瀏覽代碼

disable Issue6259 test for python correctly

Justin Donaldson 8 年之前
父節點
當前提交
d022ba9e85
共有 1 個文件被更改,包括 2 次插入2 次删除
  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