We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c318530 commit 3f258e2Copy full SHA for 3f258e2
src/test/java/difflib/TestConstants.java
@@ -14,19 +14,11 @@ private TestConstants() {
14
// prevent construction.
15
}
16
17
- /**
18
- * File separator.
19
- */
20
- public static final String FS = File.separator;
21
-
22
23
- * The base resource path.
24
25
- public static final String BASE_FOLDER_RESOURCES = "src" + FS + "test" + FS + "resources";
+ public static final String BASE_FOLDER_RESOURCES = "target/test-classes/";
26
27
/**
28
* The base folder containing the test files. Ends with {@link #FS}.
29
*/
30
- public static final String MOCK_FOLDER = BASE_FOLDER_RESOURCES + FS + "mocks" + FS;
+ public static final String MOCK_FOLDER = BASE_FOLDER_RESOURCES + "/mocks/";
31
32
0 commit comments