summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-258.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-258.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-258.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-258.js b/test/built-ins/Object/create/15.2.3.5-4-258.js
index e20c4f14b..8adec71c7 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-258.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-258.js
@@ -10,9 +10,9 @@ description: >
assert.throws(TypeError, function() {
- Object.create({}, {
- prop: {
- get: null
- }
- });
+ Object.create({}, {
+ prop: {
+ get: null
+ }
+ });
});