summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/all/S25.4.4.1_A2.3_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Promise/all/S25.4.4.1_A2.3_T2.js')
-rw-r--r--test/built-ins/Promise/all/S25.4.4.1_A2.3_T2.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Promise/all/S25.4.4.1_A2.3_T2.js b/test/built-ins/Promise/all/S25.4.4.1_A2.3_T2.js
index 77cd2628e..568aae475 100644
--- a/test/built-ins/Promise/all/S25.4.4.1_A2.3_T2.js
+++ b/test/built-ins/Promise/all/S25.4.4.1_A2.3_T2.js
@@ -11,8 +11,8 @@ flags: [async]
var arg = [];
-Promise.all(arg).then(function (result) {
- if(result.length !== 0) {
- $ERROR("expected an empty array from Promise.all([]), got " + result);
- }
+Promise.all(arg).then(function(result) {
+ if (result.length !== 0) {
+ $ERROR("expected an empty array from Promise.all([]), got " + result);
+ }
}).then($DONE, $DONE);