diff --git a/test/built-ins/Function/prototype/bind/15.3.4.5.1-4-14.js b/test/built-ins/Function/prototype/bind/15.3.4.5.1-4-14.js index ed401e8b60..3c844f557e 100644 --- a/test/built-ins/Function/prototype/bind/15.3.4.5.1-4-14.js +++ b/test/built-ins/Function/prototype/bind/15.3.4.5.1-4-14.js @@ -11,7 +11,7 @@ description: > var obj = { prop: "abc" }; var func = function (x) { - return this === obj && x === 1 && arguments[1] === 2 + return this === obj && x === 1 && arguments[1] === 2 && arguments[0] === 1 && arguments.length === 2 && this.prop === "abc"; };