Correct error in test descriptions

This commit is contained in:
Mike Pennisi 2015-04-07 17:07:30 -04:00
parent 5acd66e10a
commit 9c42c10e48

View File

@ -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));