1
0
mirror of https://github.com/tc39/test262.git synced 2025-04-08 19:35:28 +02:00

Don't call $DONE twice in S25.4.4_A2.1_T3.js ()

Reverts the change from 040eb5393a6c3e854a7ab5e86b54f3dac841162e to avoid
calling $DONE twice in the test file.
This commit is contained in:
André Bargull 2020-06-25 08:35:46 -07:00 committed by GitHub
parent fcb3b91e4a
commit b5650d23a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);