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, 3 insertions, 1 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 02cc9b982..430026ff8 100644
--- a/test/built-ins/Promise/all/resolve-from-same-thenable.js
+++ b/test/built-ins/Promise/all/resolve-from-same-thenable.js
@@ -39,7 +39,9 @@ function Constructor(executor) {
}
executor(resolve, $ERROR);
}
-Constructor.resolve = function(v) { return v; };
+Constructor.resolve = function(v) {
+ return v;
+};
var p1OnFulfilled, p2OnFulfilled, p3OnFulfilled;