Merge pull request #691 from ertrzyiks/fix-spec-title

Fixed isPendingSpecException test title
This commit is contained in:
Gregg Van Hove
2014-10-22 09:52:10 -07:00

View File

@@ -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);