Parcourir la source

disable Issue6259 test for python correctly

Justin Donaldson il y a 8 ans
Parent
commit
d022ba9e85
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      tests/unit/src/unit/issues/Issue6259.hx

+ 2 - 2
tests/unit/src/unit/issues/Issue6259.hx

@@ -1,10 +1,10 @@
 package unit.issues;
 package unit.issues;
-#if !python
 class Issue6259 extends Test{
 class Issue6259 extends Test{
 	function test(){
 	function test(){
+#if !python
 		function f(a) return a.b;
 		function f(a) return a.b;
 		var res = f({b: (s) -> s.length})("6259");
 		var res = f({b: (s) -> s.length})("6259");
 		eq(res,4);
 		eq(res,4);
+#end
 	}
 	}
 }
 }
-#end