From f39420e7d7aca2a97eaa01853991facf65dcbd6e Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Wed, 27 Jul 2011 22:24:07 +0200 Subject: style(): fix couple of missing semi-colons --- test/AngularSpec.js | 2 +- test/angular-mocksSpec.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/AngularSpec.js b/test/AngularSpec.js index 98554199..0166503c 100644 --- a/test/AngularSpec.js +++ b/test/AngularSpec.js @@ -635,5 +635,5 @@ describe('angular', function(){ expect(version.dot).toBe("NG_VERSION_DOT"); expect(version.codeName).toBe('"NG_VERSION_CODENAME"'); }); - }) + }); }); diff --git a/test/angular-mocksSpec.js b/test/angular-mocksSpec.js index a30c3497..f24f6e57 100644 --- a/test/angular-mocksSpec.js +++ b/test/angular-mocksSpec.js @@ -130,7 +130,7 @@ describe('mocks', function(){ it('should throw error when no third param but toString called', function() { - expect(function() { new TzDate(0,0).toString() }). + expect(function() { new TzDate(0,0).toString(); }). toThrow('Method \'toString\' is not implemented in the TzDate mock'); }); }); @@ -236,7 +236,7 @@ describe('mocks', function(){ var rootScope = angular.scope(), exHandler = rootScope.$service('$exceptionHandler'); - expect(function() { exHandler('myException') }).toThrow('myException'); + expect(function() { exHandler('myException'); }).toThrow('myException'); }); }); }); -- cgit v1.2.3