mirror of
https://github.com/tc39/test262.git
synced 2025-07-27 07:54:41 +02:00
Merge pull request #270 from edgemaster/patch-1
S15.4.4.5_A3.1_T1.js: Fix inconsistent error message
This commit is contained in:
commit
68e6a66353
@ -48,5 +48,5 @@ if (x.join(undefined) !== "0,1,2,3") {
|
|||||||
|
|
||||||
//CHECK#7
|
//CHECK#7
|
||||||
if (x.join(NaN) !== "0NaN1NaN2NaN3") {
|
if (x.join(NaN) !== "0NaN1NaN2NaN3") {
|
||||||
$ERROR('#7: x = new Array(0,1,2,3); x.join("NaN") === "0NaN1NaN2NaN3". Actual: ' + (x.join("NaN")));
|
$ERROR('#7: x = new Array(0,1,2,3); x.join(NaN) === "0NaN1NaN2NaN3". Actual: ' + (x.join(NaN)));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user