From 9af81b627b20ca3b4c4f399c24b9584ef41e856a Mon Sep 17 00:00:00 2001 From: Christian Williams Date: Thu, 5 Aug 2010 23:10:09 -0700 Subject: [PATCH] Missing semicolons. --- spec/suites/MatchersSpec.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/spec/suites/MatchersSpec.js b/spec/suites/MatchersSpec.js index 88fd96b..536bc48 100644 --- a/spec/suites/MatchersSpec.js +++ b/spec/suites/MatchersSpec.js @@ -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(); - }) - }) + }); + }); });