summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/all/resolve-from-same-thenable.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Promise/all/resolve-from-same-thenable.js')
-rw-r--r--test/built-ins/Promise/all/resolve-from-same-thenable.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/built-ins/Promise/all/resolve-from-same-thenable.js b/test/built-ins/Promise/all/resolve-from-same-thenable.js
index 430026ff8..02cc9b982 100644
--- a/test/built-ins/Promise/all/resolve-from-same-thenable.js
+++ b/test/built-ins/Promise/all/resolve-from-same-thenable.js
@@ -39,9 +39,7 @@ function Constructor(executor) {
}
executor(resolve, $ERROR);
}
-Constructor.resolve = function(v) {
- return v;
-};
+Constructor.resolve = function(v) { return v; };
var p1OnFulfilled, p2OnFulfilled, p3OnFulfilled;