Browse Source

Dodge some failing test

Rudy Ges 9 months ago
parent
commit
c8719ba688
1 changed files with 3 additions and 1 deletions
  1. 3 1
      tests/sys/src/TestUnicode.hx

+ 3 - 1
tests/sys/src/TestUnicode.hx

@@ -145,7 +145,9 @@ class TestUnicode extends utest.Test {
 		Sys.setCwd("test-res");
 		function enterLeave(dir:String, ?alt:String):Void {
 			Sys.setCwd(dir);
-			assertUEnds(Path.removeTrailingSlashes(Path.normalize(Sys.getCwd())), '/test-res/${dir}', alt != null ? '/test-res/${alt}' : null);
+			// Dodge that for now..
+			assertUEnds(Path.removeTrailingSlashes(Path.normalize(Sys.getCwd())), "/test-res/" + dir, alt != null ? "/test-res/" + alt : null);
+			// assertUEnds(Path.removeTrailingSlashes(Path.normalize(Sys.getCwd())), '/test-res/${dir}', alt != null ? '/test-res/${alt}' : null);
 			Sys.setCwd("..");
 		}
 		for (filename in names) switch (filename) {