Browse Source

[as3] disabled new haxe.ds.Vector test for as3

Alexander Kuzmenko 7 years ago
parent
commit
a521308f20
1 changed files with 2 additions and 0 deletions
  1. 2 0
      tests/unit/src/unitstd/haxe/ds/Vector.unit.hx

+ 2 - 0
tests/unit/src/unitstd/haxe/ds/Vector.unit.hx

@@ -44,7 +44,9 @@ vec.set(1, 2);
 var arr = vec.toArray();
 arr[0] == vNullInt;
 arr[1] == 2;
+#if !as3
 arr[3] == vNullInt;
+#end
 
 // objects
 var tpl = new C();