diff --git a/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-array.js b/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-array.js index d5db934d339..781357c0600 100644 --- a/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-array.js +++ b/test/built-ins/Array/prototype/filter/create-proto-from-ctor-realm-array.js @@ -37,7 +37,7 @@ array.constructor = OArray; Object.defineProperty(Array, Symbol.species, speciesDesc); Object.defineProperty(OArray, Symbol.species, speciesDesc); -result = array.concat(function() {}); +result = array.filter(function() {}); assert.sameValue(Object.getPrototypeOf(result), Array.prototype); assert.sameValue(callCount, 0, 'Species constructor is not referenced');