Forráskód Böngészése

[tests] ignore as3 :-/

Dan Korostelev 6 éve
szülő
commit
a950da06ae
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      tests/unit/src/unit/issues/Issue8248.hx

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

@@ -1,6 +1,6 @@
 package unit.issues;
 
-#if flash
+#if (flash && !as3)
 private class NoProtected {}
 
 private class Base extends NoProtected {
@@ -30,7 +30,7 @@ private class ExternGrandChild extends ExternChild {
 #end
 
 class Issue8248 extends unit.Test {
-	#if flash
+	#if (flash && !as3)
 	function test() {
 		eq(new GrandChild().x, 2);
 		eq(new ExternGrandChild().getF(), "bye");