From 02b6ca0db6cc0e1b0d3ca83db09e68503a700034 Mon Sep 17 00:00:00 2001 From: "bob%bclary.com" Date: Tue, 25 Oct 2005 07:15:07 +0000 Subject: [PATCH] Regression test for bug 313153, fix to compare string types, not part of the build git-svn-id: svn://10.0.0.236/trunk@182950 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/js/tests/js1_5/Array/regress-313153.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/js/tests/js1_5/Array/regress-313153.js b/mozilla/js/tests/js1_5/Array/regress-313153.js index 0dc71843200..27f481af4e3 100755 --- a/mozilla/js/tests/js1_5/Array/regress-313153.js +++ b/mozilla/js/tests/js1_5/Array/regress-313153.js @@ -44,6 +44,6 @@ printBugNumber (bug); printStatus (summary); expect = '1,2,3'; -actual = (function (){return Array.concat.apply([], arguments)})(1,2,3); +actual = (function (){return Array.concat.apply([], arguments)})(1,2,3).toString(); reportCompare(expect, actual, summary);