summaryrefslogtreecommitdiff
path: root/test/built-ins/Symbol/constructor.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Symbol/constructor.js')
-rw-r--r--test/built-ins/Symbol/constructor.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Symbol/constructor.js b/test/built-ins/Symbol/constructor.js
index 936f05416..e62f06c8f 100644
--- a/test/built-ins/Symbol/constructor.js
+++ b/test/built-ins/Symbol/constructor.js
@@ -7,12 +7,12 @@ description: >
features: [Symbol]
---*/
assert.sameValue(
- Object.getPrototypeOf(Symbol('66')).constructor,
- Symbol,
- "The value of `Object.getPrototypeOf(Symbol('66')).constructor` is `Symbol`"
+ Object.getPrototypeOf(Symbol('66')).constructor,
+ Symbol,
+ "The value of `Object.getPrototypeOf(Symbol('66')).constructor` is `Symbol`"
);
assert.sameValue(
- Object.getPrototypeOf(Object(Symbol('66'))).constructor,
- Symbol,
- "The value of `Object.getPrototypeOf(Object(Symbol('66'))).constructor` is `Symbol`"
+ Object.getPrototypeOf(Object(Symbol('66'))).constructor,
+ Symbol,
+ "The value of `Object.getPrototypeOf(Object(Symbol('66'))).constructor` is `Symbol`"
);