Index: test/webkit/for-in-cached.js |
diff --git a/test/webkit/for-in-cached.js b/test/webkit/for-in-cached.js |
index 1842d612931c981da3ae88676ad228583d42fce5..760a5b458907689e41786db4c782cf1d1c36ac6c 100644 |
--- a/test/webkit/for-in-cached.js |
+++ b/test/webkit/for-in-cached.js |
@@ -84,8 +84,8 @@ function forIn5(o) { |
} |
shouldBe("forIn5({get foo() { return 'called getter'} })", "['foo', 'called getter']"); |
-shouldBe("forIn5({set foo() { } })", "['foo', undefined]"); |
-shouldBe("forIn5({get foo() { return 'called getter'}, set foo() { }})", "['foo', 'called getter']"); |
+shouldBe("forIn5({set foo(v) { } })", "['foo', undefined]"); |
+shouldBe("forIn5({get foo() { return 'called getter'}, set foo(v) { }})", "['foo', 'called getter']"); |
function cacheClearing() { |
for(var j=0; j < 10; j++){ |