فهرست منبع

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

Alexander Kuzmenko 7 سال پیش
والد
کامیت
a521308f20
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  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();