diff --git a/test/language/expressions/typeof/built-in-functions.js b/test/language/expressions/typeof/built-in-functions.js index f072707120..83ed31e636 100644 --- a/test/language/expressions/typeof/built-in-functions.js +++ b/test/language/expressions/typeof/built-in-functions.js @@ -11,8 +11,8 @@ description: Checking types of parseInt and Math.exp //CHECK#1 if(typeof(Math.exp)!=="function") - $ERROR('#1: typeof(Math.exp(10))!=="function" '+typeof(Math.exp())); + $ERROR('#1: typeof(Math.exp)!=="function" '+typeof(Math.exp)); //CHECK#2 if(typeof(parseInt)!=="function") - $ERROR('#2: typeof(parseInt())!=="function" '+typeof(parseInt())); + $ERROR('#2: typeof(parseInt)!=="function" '+typeof(parseInt));