Explorar o código

disable issue6276 tests for a few targets

Justin Donaldson %!s(int64=8) %!d(string=hai) anos
pai
achega
0e2fca1bb2
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      tests/unit/src/unit/issues/Issue6276.hx

+ 2 - 0
tests/unit/src/unit/issues/Issue6276.hx

@@ -2,9 +2,11 @@ package unit.issues;
 
 class Issue6276 extends unit.Test {
 	function test(){
+#if (!php7 && !java && !cs)
 		var s = "foo";
 		var indexOf = Reflect.field(s, "indexOf");
 		var pos = Reflect.callMethod(s, indexOf, ["o"]);
 		eq(pos, 1);
+#end
 	}
 }