summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-252.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-252.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-252.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-252.js b/test/built-ins/Object/create/15.2.3.5-4-252.js
index 96441ccf6..e5cd76b90 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-252.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-252.js
@@ -9,12 +9,12 @@ description: >
(8.10.5 step 7.a)
---*/
-JSON.get = function() {
- return "VerifyJSONObject";
-};
+ JSON.get = function () {
+ return "VerifyJSONObject";
+ };
-var newObj = Object.create({}, {
- prop: JSON
-});
+ var newObj = Object.create({}, {
+ prop: JSON
+ });
assert.sameValue(newObj.prop, "VerifyJSONObject", 'newObj.prop');