mirror of https://github.com/tc39/test262.git
Merge pull request #77 from anba/issue-63/correct-array-fill-test
Correct Array.prototype.fill tests (Fixes #63)
This commit is contained in:
commit
7f5310b4d5
|
@ -12,7 +12,7 @@ runTestCase(function () {
|
|||
var testArr = new Array('testString', 'anotherTestString', 3),
|
||||
updatedArr = testArr.fill('newValue', 1, 3);
|
||||
|
||||
if (updatedArr[3] !== 'newValue') {
|
||||
if (updatedArr[3] !== void 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -20,11 +20,15 @@ runTestCase(function () {
|
|||
return false;
|
||||
}
|
||||
|
||||
if (updatedArr[1] !== 'newValue') {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (updatedArr[0] !== 'testString') {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (updatedArr.length !== 4) {
|
||||
if (updatedArr.length !== 3) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue