Prechádzať zdrojové kódy

disabled #8079 test for python (see #7546)

Alexander Kuzmenko 6 rokov pred
rodič
commit
691044609e
1 zmenil súbory, kde vykonal 2 pridanie a 0 odobranie
  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
 }