Browse Source

disable Issue6259 test for python correctly

Justin Donaldson 8 years ago
parent
commit
d022ba9e85
1 changed files with 2 additions and 2 deletions
  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;
-#if !python
 class Issue6259 extends Test{
 	function test(){
+#if !python
 		function f(a) return a.b;
 		var res = f({b: (s) -> s.length})("6259");
 		eq(res,4);
+#end
 	}
 }
-#end