Index: test/webkit/preventExtensions-expected.txt |
diff --git a/test/webkit/preventExtensions-expected.txt b/test/webkit/preventExtensions-expected.txt |
index 196b0a82b45fdc35134424a696171a4fa8bbc5c2..027f206ecde7b8f80a682382d6d9ec46f39ec50a 100644 |
--- a/test/webkit/preventExtensions-expected.txt |
+++ b/test/webkit/preventExtensions-expected.txt |
@@ -39,7 +39,7 @@ PASS "use strict"; var o = {}; Object.preventExtensions(o); o.__proto__ = { newP |
PASS Object.preventExtensions(Math); Math.sqrt(4) is 2 |
PASS var arr = Object.preventExtensions([]); arr[0] = 42; arr[0] is undefined. |
PASS var arr = Object.preventExtensions([]); arr[0] = 42; arr.length is 0 |
-PASS "use strict"; var arr = Object.preventExtensions([]); arr[0] = 42; arr[0] threw exception TypeError: Can't add property 0, object is not extensible. |
+PASS "use strict"; var arr = Object.preventExtensions([]); arr[0] = 42; arr[0] threw exception TypeError: Cannot add property 0, object is not extensible. |
PASS obj.foo is 1 |
PASS Object.isFrozen(func) is true |
PASS func.prototype === 42 is false |