aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/WeakMap/prototype/get/returns-value.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/WeakMap/prototype/get/returns-value.js')
-rw-r--r--test/built-ins/WeakMap/prototype/get/returns-value.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/built-ins/WeakMap/prototype/get/returns-value.js b/test/built-ins/WeakMap/prototype/get/returns-value.js
index 2afc923dc..47990a97d 100644
--- a/test/built-ins/WeakMap/prototype/get/returns-value.js
+++ b/test/built-ins/WeakMap/prototype/get/returns-value.js
@@ -21,7 +21,9 @@ info: |
var foo = {};
var bar = {};
var baz = [];
-var map = new WeakMap([[foo,0]]);
+var map = new WeakMap([
+ [foo, 0]
+]);
assert.sameValue(map.get(foo), 0);