Browse Source

[tests] neko doesn't like unicode tests

Simon Krajewski 7 years ago
parent
commit
d68e2fd119
1 changed files with 3 additions and 0 deletions
  1. 3 0
      tests/unit/src/unit/issues/Issue7247.hx

+ 3 - 0
tests/unit/src/unit/issues/Issue7247.hx

@@ -3,6 +3,8 @@ import unit.Test;
 
 
 class Issue7247 extends Test {
 class Issue7247 extends Test {
 
 
+	#if !neko
+
 	var str = "将一";
 	var str = "将一";
 	var str2 = "将一\\";
 	var str2 = "将一\\";
 
 
@@ -18,4 +20,5 @@ class Issue7247 extends Test {
 		t( ~/\\/.match(str2) );
 		t( ~/\\/.match(str2) );
 	}
 	}
 
 
+	#end
 }
 }