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 56ff6afd08b713c6a30829f2c97700f50c34b46e..7f0493650d5751f3f37dc1ce14387512ad44cace 100644 --- a/test/built-ins/TypedArrays/from/mapfn-is-not-callable.js +++ b/test/built-ins/TypedArrays/from/mapfn-is-not-callable.js @@ -52,10 +52,6 @@ testWithTypedArrayConstructors(function(TA) { TA.from(arrayLike, s); }, "mapfn is a symbol"); - assert.throws(TypeError, function() { - TA.from(arrayLike, TA); - }, "mapfn is a TypedArray constructor (not callable)"); - assert.sameValue( getIterator, 0, "IsCallable(mapfn) check occurs before getting source[@@iterator]"