Index: test/mjsunit/es6/array-tostring.js |
diff --git a/test/mjsunit/es6/array-tostring.js b/test/mjsunit/es6/array-tostring.js |
index 8a9198ca16353905704876c2ff1442ceb2b9dc22..397fde4ab185811cb166745c244a693b4eb8fd62 100644 |
--- a/test/mjsunit/es6/array-tostring.js |
+++ b/test/mjsunit/es6/array-tostring.js |
@@ -41,7 +41,7 @@ function testToStringTag(className) { |
Object.defineProperty(obj, Symbol.toStringTag, { |
get: function() { throw className; } |
}); |
- assertThrows(function() { |
+ assertThrowsEquals(function() { |
Array.prototype.toString.call(obj); |
}, className); |