Aleksandr Kuzmenko пре 2 година
родитељ
комит
7980171322
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      tests/unit/src/unit/issues/Issue10834.hx

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

@@ -7,6 +7,6 @@ class Issue10834 extends Test {
 	function test() {
 		tmp = a[0];
 		eq(0, a.length);
-		eq('[]', a.toString());
+		eq(#if (js || flash) '' #else '[]' #end, a.toString());
 	}
-}
+}