Merge pull request #420 from bakkot/patch-1

Wrong error message in function-code/S10.2.1_A1.js
This commit is contained in:
Brian Terlson 2015-08-24 15:25:32 -07:00
commit c4231d4948
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');
}