浏览代码

disabled #8079 test for python (see #7546)

Alexander Kuzmenko 6 年之前
父节点
当前提交
691044609e
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      tests/unit/src/unit/issues/Issue8079.hx

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

@@ -1,6 +1,7 @@
 package unit.issues;
 
 class Issue8079 extends unit.Test {
+#if !python
 	function test() {
 		var instance = ({}:Dynamic);
 		if(instance.timeout != null) {
@@ -8,4 +9,5 @@ class Issue8079 extends unit.Test {
 		}
 		utest.Assert.pass();
 	}
+#end
 }