Index: test/webkit/object-literal-direct-put-expected.txt |
diff --git a/test/webkit/object-literal-direct-put-expected.txt b/test/webkit/object-literal-direct-put-expected.txt |
index 46793d20da96e684160d8c859f1a2de61db80038..3a19f0a0d43511f0415be48da51c7cb3ab21c997 100644 |
--- a/test/webkit/object-literal-direct-put-expected.txt |
+++ b/test/webkit/object-literal-direct-put-expected.txt |
@@ -28,11 +28,11 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE |
PASS ({a:true}).a is true |
PASS ({__proto__: {a:false}, a:true}).a is true |
-PASS ({__proto__: {set a() {throw 'Should not call setter'; }}, a:true}).a is true |
+PASS ({__proto__: {set a(v) {throw 'Should not call setter'; }}, a:true}).a is true |
PASS ({__proto__: {get a() {throw 'Should not reach getter'; }}, a:true}).a is true |
PASS ({__proto__: {get a() {throw 'Should not reach getter'; }, b:true}, a:true}).b is true |
PASS ({__proto__: {__proto__: {a:false}}, a:true}).a is true |
-PASS ({__proto__: {__proto__: {set a() {throw 'Should not call setter'; }}}, a:true}).a is true |
+PASS ({__proto__: {__proto__: {set a(v) {throw 'Should not call setter'; }}}, a:true}).a is true |
PASS ({__proto__: {__proto__: {get a() {throw 'Should not reach getter'; }}}, a:true}).a is true |
PASS ({__proto__: {__proto__: {get a() {throw 'Should not reach getter'; }, b:true}}, a:true}).b is true |
PASS successfullyParsed is true |