Revision: 12297
Author:   [email protected]
Date:     Mon Aug 13 01:32:17 2012
Log:      Fix array-iteration test case.

[email protected]
BUG=v8:2282

Review URL: https://chromiumcodereview.appspot.com/10827295
http://code.google.com/p/v8/source/detail?r=12297

Modified:
 /branches/bleeding_edge/test/mjsunit/array-iteration.js

=======================================
--- /branches/bleeding_edge/test/mjsunit/array-iteration.js Thu Sep 1 04:28:10 2011 +++ /branches/bleeding_edge/test/mjsunit/array-iteration.js Mon Aug 13 01:32:17 2012
@@ -40,7 +40,7 @@
   // Simple use.
   var a = [0,1];
   assertArrayEquals([0], a.filter(function(n) { return n == 0; }));
-  assertArrayEquals(a, a);
+  assertArrayEquals([0,1], a);

   // Use specified object as this object when calling the function.
   var o = { value: 42 }

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to