mirror of https://github.com/tc39/test262.git
Don't call $DONE twice in S25.4.4_A2.1_T3.js (#2679)
Reverts the change from 040eb5393a
to avoid
calling $DONE twice in the test file.
This commit is contained in:
parent
fcb3b91e4a
commit
b5650d23a5
|
@ -37,6 +37,6 @@ Promise.resolve().then(function() {
|
|||
assert.sameValue(sequence.length, 3);
|
||||
checkSequence(sequence, "Expected 1,2,3");
|
||||
}).then($DONE, $DONE);
|
||||
}).then($DONE, $DONE);
|
||||
});
|
||||
|
||||
sequence.push(1);
|
||||
|
|
Loading…
Reference in New Issue