]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - tests/mozilla/js1_4/Functions/function-001.js
JavaScriptCore-1218.tar.gz
[apple/javascriptcore.git] / tests / mozilla / js1_4 / Functions / function-001.js
index c1e6a3df166f6a50d5486fcd8b4282619e482571..fd2ceb0c3da5aa7f589f5ee60a80b9f100d6b47b 100644 (file)
@@ -82,7 +82,7 @@
         SECTION,
         "return function.arguments when function contains an arguments property",
         "PASS",
-        TestFunction_4( "F", "A", "I", "L" ) +"");
+        TestFunction_4( "P", "A", "S", "S" ) +"");
 
     test();
 
     }
 
     function TestFunction_4( a, b, c, d, e ) {
-        var arguments = "PASS";
-        return TestFunction_4.arguments;
+        var arguments = "FAIL";
+        return Array.prototype.join.call(TestFunction_4.arguments, "");
     }