summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArrays/from/mapfn-is-not-callable.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArrays/from/mapfn-is-not-callable.js')
-rw-r--r--test/built-ins/TypedArrays/from/mapfn-is-not-callable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/TypedArrays/from/mapfn-is-not-callable.js b/test/built-ins/TypedArrays/from/mapfn-is-not-callable.js
index 3816ec3d0..de2171edc 100644
--- a/test/built-ins/TypedArrays/from/mapfn-is-not-callable.js
+++ b/test/built-ins/TypedArrays/from/mapfn-is-not-callable.js
@@ -47,7 +47,7 @@ testWithTypedArrayConstructors(function(TA) {
TA.from(arrayLike, true);
}, "mapfn is a boolean");
- var s = Symbol("1")
+ var s = Symbol("1");
assert.throws(TypeError, function() {
TA.from(arrayLike, s);
}, "mapfn is a symbol");