aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch10
diff options
context:
space:
mode:
authorJaimeLynSchatz <jaimelynschatz@gmail.com>2014-01-26 11:36:47 -0800
committerJaimeLynSchatz <jaimelynschatz@gmail.com>2014-01-26 11:36:47 -0800
commit239c4b721a22e278daa5bc19d3b0290859838d23 (patch)
treecdbc581fe915a1596c2267b8831c7f26a6f96c9f /test/suite/ch10
parent9b669da66c78bd583bc130a7ca3151258e4681a1 (diff)
fix typo in 10.5 from Bugzilla
Diffstat (limited to 'test/suite/ch10')
-rw-r--r--test/suite/ch10/10.5/10.5-7-b-3-s.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/suite/ch10/10.5/10.5-7-b-3-s.js b/test/suite/ch10/10.5/10.5-7-b-3-s.js
index 4f4a66dcd..cde0b88c6 100644
--- a/test/suite/ch10/10.5/10.5-7-b-3-s.js
+++ b/test/suite/ch10/10.5/10.5-7-b-3-s.js
@@ -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);