Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:ministryofjustice/cla_common int…
Browse files Browse the repository at this point in the history
…o develop
  • Loading branch information
Andy Driver committed Jan 23, 2015
2 parents 02f7c95 + abffcc7 commit dbfc9f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cla_common/tests/test_call_centre_availability.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def test_available_days(self):
with override_current_time(self.now):
openinghours = TEST_OPENING_HOURS
days = openinghours.available_days()
for expected, actual in zip(expected_days, days()):
for expected, actual in zip(expected_days, days):
self.assertDateEqual(expected, actual)

def test_today_slots(self):
Expand All @@ -167,5 +167,5 @@ def test_today_slots(self):
with override_current_time(datetime(2014, 10, 25, 10, 30)):
openinghours = TEST_OPENING_HOURS
slots = openinghours.today_slots()
for expected, actual in zip(expected_slots, slots()):
for expected, actual in zip(expected_slots, slots):
self.assertTimeEqual(expected, actual)

0 comments on commit dbfc9f5

Please sign in to comment.