Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit 5ee2679

Browse files
author
Costin Zaharia
committed
Made jshint happy :)
1 parent fea3e86 commit 5ee2679

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/calendar.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ describe('uiCalendar', function () {
352352
}));
353353

354354
it('should not fail when addCommands is called with undefined settings ', function(){
355-
expect(calendarCtrl.addCommands).not.toThrow()
355+
expect(calendarCtrl.addCommands).not.toThrow();
356356
});
357357

358358
it('makes sure that refetchEvents command is added on the configuration', function(){
@@ -366,13 +366,13 @@ describe('uiCalendar', function () {
366366
fullCalendar: function(string){
367367

368368
}
369-
}
369+
};
370370

371371
spyOn(fakeCalendar, 'fullCalendar');
372372

373373
calendarCtrl.addCommands(scope.uiConfig.calendar, fakeCalendar);
374374

375-
scope.uiConfig.calendar.refetchEvents()
375+
scope.uiConfig.calendar.refetchEvents();
376376

377377
expect(fakeCalendar.fullCalendar).toHaveBeenCalledWith('refetchEvents');
378378
});

0 commit comments

Comments
 (0)