summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js')
-rw-r--r--test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js b/test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js
index eae453e21..9989bb209 100644
--- a/test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js
+++ b/test/built-ins/Object/assign/Source-Number-Boolen-Symbol.js
@@ -9,6 +9,6 @@ features: [Symbol]
---*/
var target = new Object();
-var result = Object.assign(target,123,true,Symbol('foo'));
+var result = Object.assign(target, 123, true, Symbol('foo'));
assert.sameValue(result, target, "Numbers, booleans, and symbols cannot have wrappers with own enumerable properties.");