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