From 3b557f85c70c2d6c158891d38305eb5c87995e12 Mon Sep 17 00:00:00 2001 From: Mateusz Derks Date: Fri, 17 Oct 2014 15:30:26 +0200 Subject: [PATCH] Fixed isPendingSpecException test title --- spec/core/SpecSpec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/core/SpecSpec.js b/spec/core/SpecSpec.js index f59eb1db..a99b7451 100644 --- a/spec/core/SpecSpec.js +++ b/spec/core/SpecSpec.js @@ -14,7 +14,7 @@ describe("Spec", function() { expect(j$.Spec.isPendingSpecException(fakeError)).toBe(true); }); - it("#isPendingSpecException returns true for a pending spec exception", function() { + it("#isPendingSpecException returns false for not a pending spec exception", function() { var e = new Error("foo"); expect(j$.Spec.isPendingSpecException(e)).toBe(false);