Skip to content

Commit

Permalink
Correcting this Promise test description.
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jun 23, 2015
1 parent b81c088 commit 51eb6c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/promise/simple.js
Expand Up @@ -71,7 +71,7 @@ describe('Promise', function () {
return Promise.all([a, b]);
});

specify('resolve with a thenable that throws on .then, throws immediately', function () {
specify('resolve with a thenable that throws on .then, rejects the promise synchronously', function () {
var resolve;
var p = new Promise(function (r) { resolve = r; });
var count = 0;
Expand Down

0 comments on commit 51eb6c8

Please sign in to comment.