summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js')
-rw-r--r--test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js32
1 files changed, 16 insertions, 16 deletions
diff --git a/test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js b/test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js
index 2f9d3cb67..3f24b602d 100644
--- a/test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js
+++ b/test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js
@@ -12,28 +12,28 @@ flags: [async]
var sequence = [];
var p1 = Promise.reject(1),
- p2 = Promise.resolve(2),
- p = Promise.race([p1, p2]);
+ p2 = Promise.resolve(2),
+ p = Promise.race([p1, p2]);
sequence.push(1);
-p.then(function() {
- $ERROR("Should not be fulfilled - expected rejection.");
-}, function(arg) {
- if (arg !== 1) {
- $ERROR("Expected rejection reason to be 1, got " + arg);
- }
+p.then(function () {
+ $ERROR("Should not be fulfilled - expected rejection.");
+}, function (arg) {
+ if (arg !== 1) {
+ $ERROR("Expected rejection reason to be 1, got " + arg);
+ }
- sequence.push(4);
- checkSequence(sequence, "This happens second");
+ sequence.push(4);
+ checkSequence(sequence, "This happens second");
}).catch($DONE);
-Promise.resolve().then(function() {
- sequence.push(3);
- checkSequence(sequence, "This happens first");
-}).then(function() {
- sequence.push(5);
- checkSequence(sequence, "This happens third");
+Promise.resolve().then(function () {
+ sequence.push(3);
+ checkSequence(sequence, "This happens first");
+}).then(function () {
+ sequence.push(5);
+ checkSequence(sequence, "This happens third");
}).then($DONE, $DONE);
sequence.push(2);