From 3403b13a7fe2f87d3d336afd1f553f00d07b84e8 Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Mon, 7 Apr 2014 17:04:04 +0100 Subject: [PATCH] fix test --- tests/test_array_for_in_loop_iteration_order.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_array_for_in_loop_iteration_order.js b/tests/test_array_for_in_loop_iteration_order.js index 16f6ec0c9..59f93b183 100644 --- a/tests/test_array_for_in_loop_iteration_order.js +++ b/tests/test_array_for_in_loop_iteration_order.js @@ -8,6 +8,5 @@ for (i in a) s1=s1+i; var s2 = JSON.stringify(a); var s3 = a.join('-'); var l = a.length; -result = s1=="0124" && s2=="[0,1,2,undefined,4]" && s3=="0-1-2--4" && l==5; -// trying this on jsconsole.chrome gives [0,1,2,null,4] - but lets forget that for now +result = s1=="0124" && s2=="[0,1,2,null,4]" && s3=="0-1-2--4" && l==5;