summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-250.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-250.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-250.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-250.js b/test/built-ins/Object/create/15.2.3.5-4-250.js
index 861c07e15..1d3ca0e74 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-250.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-250.js
@@ -9,14 +9,14 @@ description: >
(8.10.5 step 7.a)
---*/
- var regObj = new RegExp();
+var regObj = new RegExp();
- regObj.get = function () {
- return "VerifyRegExpObject";
- };
+regObj.get = function() {
+ return "VerifyRegExpObject";
+};
- var newObj = Object.create({}, {
- prop: regObj
- });
+var newObj = Object.create({}, {
+ prop: regObj
+});
assert.sameValue(newObj.prop, "VerifyRegExpObject", 'newObj.prop');