fix typo in 10.5 from Bugzilla

This commit is contained in:
JaimeLynSchatz 2014-01-26 11:36:47 -08:00
parent 9b669da66c
commit 239c4b721a
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ function testcase() {
function _10_5_7_b_3_fun() {
arguments[1] = 12;
return arguments[0] = 30 && arguments[1] === 12;
return arguments[0] === 30 && arguments[1] === 12;
};
return _10_5_7_b_3_fun(30);