From 51eb6c885395ceb883d23c0f692049af2f2fac56 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 22 Jun 2015 21:23:24 -0700 Subject: [PATCH] Correcting this Promise test description. --- test/promise/simple.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/promise/simple.js b/test/promise/simple.js index 04e14bc4..716e5c78 100644 --- a/test/promise/simple.js +++ b/test/promise/simple.js @@ -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;