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 ed401e8b608dcac3377dbaa9a20c0a89f16e2948..3c844f557e716e30abaf595382933f2f99d382ce 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";
         };