summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-4-301.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-4-301.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-4-301.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-4-301.js b/test/built-ins/Object/create/15.2.3.5-4-301.js
index 41acad4d2..a7f9180cb 100644
--- a/test/built-ins/Object/create/15.2.3.5-4-301.js
+++ b/test/built-ins/Object/create/15.2.3.5-4-301.js
@@ -11,10 +11,10 @@ description: >
assert.throws(TypeError, function() {
- Object.create({}, {
- prop: {
- set: function () { },
- value: 100
- }
- });
+ Object.create({}, {
+ prop: {
+ set: function() {},
+ value: 100
+ }
+ });
});