Wrong error message in function-code/S10.2.1_A1.js

This commit is contained in:
Kevin Gibbons 2015-08-18 17:47:02 -07:00
parent 39b5b7272c
commit 8759c88bec
1 changed files with 1 additions and 1 deletions

View File

@ -24,5 +24,5 @@ function f2(a, b, c){
return (b === undefined) && (c === undefined);
}
if(!(f2(1) === true)){
$ERROR('#2: f2(1, 2) === true');
$ERROR('#2: f2(1) === true');
}