summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/create/15.2.3.5-3-1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/create/15.2.3.5-3-1.js')
-rw-r--r--test/built-ins/Object/create/15.2.3.5-3-1.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Object/create/15.2.3.5-3-1.js b/test/built-ins/Object/create/15.2.3.5-3-1.js
index 94e4050b6..a63a939ad 100644
--- a/test/built-ins/Object/create/15.2.3.5-3-1.js
+++ b/test/built-ins/Object/create/15.2.3.5-3-1.js
@@ -9,9 +9,9 @@ es5id: 15.2.3.5-3-1
description: Object.create sets the prototype of the passed-in object
---*/
-function base() {}
-var b = new base();
-var d = Object.create(b);
+ function base() {}
+ var b = new base();
+ var d = Object.create(b);
assert.sameValue(Object.getPrototypeOf(d), b, 'Object.getPrototypeOf(d)');
assert.sameValue(b.isPrototypeOf(d), true, 'b.isPrototypeOf(d)');