diff options
| author | Robert | 2017-05-05 15:44:48 +0200 |
|---|---|---|
| committer | Robert | 2017-05-05 15:44:48 +0200 |
| commit | a8ec70c7ca7868f468622036859bdec8f4913ba1 (patch) | |
| tree | 5c51e0973bf2f1890c7135f868bce7eca49dbb4b /spec/javascripts | |
| parent | e5a1a2cb94fc2f2c4bab56a594df7db254a527ce (diff) | |
| parent | ef13c897645ed2397db3fede5257a41f62ca9c39 (diff) | |
| download | chouette-core-a8ec70c7ca7868f468622036859bdec8f4913ba1.tar.bz2 | |
Merge branch 'master' of github.com:af83/stif-boiv
Diffstat (limited to 'spec/javascripts')
| -rw-r--r-- | spec/javascripts/time_table/actions_spec.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/javascripts/time_table/actions_spec.js b/spec/javascripts/time_table/actions_spec.js index 73b2d2ac9..a8abd8f90 100644 --- a/spec/javascripts/time_table/actions_spec.js +++ b/spec/javascripts/time_table/actions_spec.js @@ -171,10 +171,9 @@ describe('actions', () => { const expectedAction = { type: 'INCLUDE_DATE_IN_PERIOD', index, - day, dayTypes } - expect(actions.includeDateInPeriod(index, day, dayTypes)).toEqual(expectedAction) + expect(actions.includeDateInPeriod(index, dayTypes)).toEqual(expectedAction) }) it('should create an action to exclude date from period', () => { @@ -182,10 +181,9 @@ describe('actions', () => { const expectedAction = { type: 'EXCLUDE_DATE_FROM_PERIOD', index, - day, dayTypes } - expect(actions.excludeDateFromPeriod(index, day, dayTypes)).toEqual(expectedAction) + expect(actions.excludeDateFromPeriod(index, dayTypes)).toEqual(expectedAction) }) it('should create an action to open confirm modal', () => { |
