Skip to content

Commit

Permalink
chore(timepicker): clean up code style
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleycho committed Nov 3, 2015
1 parent bd8acac commit fc61e17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/timepicker/test/timepicker.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1362,12 +1362,12 @@ describe('timepicker directive', function() {
expect(getTimeState(false,true)).toEqual(['02', '40', 'PM']);
expect(getModelState(true)).toEqual([14, 40]);

hoursEl.trigger( downMouseWheelEvent );
hoursEl.trigger(downMouseWheelEvent);
$rootScope.$digest();
expect(getTimeState(false, true)).toEqual(['02', '40', 'PM']);
expect(getModelState(true)).toEqual([14, 40]);

hoursEl.trigger( downKeydownEvent );
hoursEl.trigger(downKeydownEvent);
$rootScope.$digest();
expect(getTimeState(false, true)).toEqual(['02', '40', 'PM']);
expect(getModelState(true)).toEqual([14, 40]);
Expand Down

0 comments on commit fc61e17

Please sign in to comment.