summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/prototype/then/S25.4.5.3_A4.1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Promise/prototype/then/S25.4.5.3_A4.1_T1.js')
-rw-r--r--test/built-ins/Promise/prototype/then/S25.4.5.3_A4.1_T1.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/built-ins/Promise/prototype/then/S25.4.5.3_A4.1_T1.js b/test/built-ins/Promise/prototype/then/S25.4.5.3_A4.1_T1.js
index ee43a0a4a..244c9105b 100644
--- a/test/built-ins/Promise/prototype/then/S25.4.5.3_A4.1_T1.js
+++ b/test/built-ins/Promise/prototype/then/S25.4.5.3_A4.1_T1.js
@@ -15,8 +15,8 @@ var obj = {};
var p = Promise.resolve(obj);
p.then(undefined, undefined)
- .then(function (arg) {
- if (arg !== obj) {
- $ERROR("Expected resolution object to be passed through, got " + arg);
- }
- }).then($DONE, $DONE);
+ .then(function(arg) {
+ if (arg !== obj) {
+ $ERROR("Expected resolution object to be passed through, got " + arg);
+ }
+ }).then($DONE, $DONE);