Bläddra i källkod

[as3] disable namespaces tests

technically it's probably possible to support this by generating `use namespace` statements, but I can't be arsed
Dan Korostelev 6 år sedan
förälder
incheckning
65579a367f
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      tests/unit/src/unit/issues/Issue8227.hx

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

@@ -1,7 +1,7 @@
 package unit.issues;
 
 class Issue8227 extends unit.Test {
-	#if flash
+	#if (flash && !as3)
 	function test() {
 		var ns = new NsCls();
 		eq(ns.ns1v, 1);
@@ -17,7 +17,7 @@ class Issue8227 extends unit.Test {
 	#end
 }
 
-#if flash
+#if (flash && !as3)
 @:access(unit.Test)
 private class Child extends NsCls {
 	public function new(test:unit.Test) {