Commit 67b160b4 authored by Yehuda Katz's avatar Yehuda Katz

Merge pull request #8 from rwldrn/test-format-match

Fix rightward drift by reducing indent to match rest of file
parents 8f5c2870 67557879
...@@ -15,15 +15,15 @@ exports.rejected = function(error) { ...@@ -15,15 +15,15 @@ exports.rejected = function(error) {
}; };
exports.pending = function () { exports.pending = function () {
var promise = new Promise(); var promise = new Promise();
return { return {
promise: promise, promise: promise,
fulfill: function(value) { fulfill: function(value) {
promise.resolve(value); promise.resolve(value);
}, },
reject: function(error) { reject: function(error) {
promise.reject(error); promise.reject(error);
} }
}; };
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment