From 9c42c10e48325c0c1ba9c2c127fe306a58913e25 Mon Sep 17 00:00:00 2001 From: Mike Pennisi Date: Tue, 7 Apr 2015 17:07:30 -0400 Subject: [PATCH] Correct error in test descriptions --- test/language/expressions/typeof/built-in-functions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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));