Index: test/mjsunit/harmony/iteration-semantics.js |
diff --git a/test/mjsunit/harmony/iteration-semantics.js b/test/mjsunit/harmony/iteration-semantics.js |
index 27033e18bfd6003e21cfab80effa43773e19b55b..803f12faa9316d5a7c19aa57dbad9c9103408873 100644 |
--- a/test/mjsunit/harmony/iteration-semantics.js |
+++ b/test/mjsunit/harmony/iteration-semantics.js |
@@ -219,7 +219,7 @@ assertEquals(0, fold(sum, 0, unreachable(undefined))); |
// Other non-iterators do cause an error. |
assertThrows('fold(sum, 0, unreachable({}))', TypeError); |
-assertThrows('fold(sum, 0, unreachable("foo"))', TypeError); |
+assertThrows('fold(sum, 0, unreachable(false))', TypeError); |
assertThrows('fold(sum, 0, unreachable(37))', TypeError); |
// "next" is looked up each time. |