Index: test/mjsunit/harmony/block-conflicts.js |
diff --git a/test/mjsunit/harmony/block-conflicts.js b/test/mjsunit/harmony/block-conflicts.js |
index 8388504bcd6d073a5c027010e96f19228686c115..3aa9d2222303d1fccdbdb9387acb33b517f5a3de 100644 |
--- a/test/mjsunit/harmony/block-conflicts.js |
+++ b/test/mjsunit/harmony/block-conflicts.js |
@@ -35,7 +35,8 @@ |
function CheckException(e) { |
var string = e.toString(); |
assertTrue(string.indexOf("has already been declared") >= 0 || |
- string.indexOf("redeclaration") >= 0); return 'Conflict'; |
+ string.indexOf("redeclaration") >= 0); |
+ return 'Conflict'; |
} |