summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-177.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-177.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-177.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-177.js b/test/built-ins/Object/create/15.2.3.5-4-177.js
index 5b9d67cbe..58825c2a8 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-177.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-177.js
@@ -9,10 +9,10 @@ description: >
(8.10.5 step 5.a)
---*/
-this.value = "GlobalValue";
+ this.value = "GlobalValue";
-var newObj = Object.create({}, {
- prop: this
-});
+ var newObj = Object.create({}, {
+ prop: this
+ });
assert.sameValue(newObj.prop, "GlobalValue", 'newObj.prop');