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:
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
1 changed files with 1 additions and 1 deletions

View File

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