Skip to content

Commit bbbb18a

Browse files
committed
Fix File pathSeparator literal in StampedLock test
1 parent 53157cb commit bbbb18a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/tests/src/test/java/com/codename1/tools/translator/StampedLockIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ private void writeMockJavaClasses(Path sourceDir) throws Exception {
262262
"public class File {\n" +
263263
" public static final String separator = \"/\";\n" +
264264
" public static final char separatorChar = '/';\n" +
265-
" public static final String pathSeparator = \":";\n" +
265+
" public static final String pathSeparator = \":\";\n" +
266266
" public static final char pathSeparatorChar = ':';\n" +
267267
" private String path;\n" +
268268
" public File(String pathname) { this.path = pathname == null ? \"\" : pathname; }\n" +

0 commit comments

Comments
 (0)