Index: test/mjsunit/es6/object-tostring.js |
diff --git a/test/mjsunit/es6/object-tostring.js b/test/mjsunit/es6/object-tostring.js |
index 0a2f89cb88134f6393020df7cec7e11df7fd0815..4d6090faf128d1f200da99b5320039c4bde4ab74 100644 |
--- a/test/mjsunit/es6/object-tostring.js |
+++ b/test/mjsunit/es6/object-tostring.js |
@@ -41,7 +41,7 @@ function testToStringTag(className) { |
Object.defineProperty(obj, Symbol.toStringTag, { |
get: function() { throw className; } |
}); |
- assertThrows(function() { |
+ assertThrowsEquals(function() { |
Object.prototype.toString.call(obj); |
}, className); |