Missing semicolons.

This commit is contained in:
Christian Williams 2010-08-05 23:10:09 -07:00
parent 5d44da0238
commit 9af81b627b
1 changed files with 2 additions and 4 deletions

View File

@ -767,14 +767,12 @@ describe("jasmine.Matchers", function() {
});
it('should throw an exception when invoked on a non-spy', shouldThrowAnExceptionWhenInvokedOnANonSpy('wasNotCalledWith'));
});
});
describe("all matchers", function() {
it("should return null, for futureproofing, since we might eventually allow matcher chaining", function() {
expect(match(true).toBe(true)).toBeUndefined();
})
})
});
});
});