Skip to content

Commit

Permalink
Remove timezones from times
Browse files Browse the repository at this point in the history
  • Loading branch information
Szaki committed Apr 24, 2024
1 parent a8154bb commit ec3cd6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/filters/test_time_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def setUp(self):
r = self.client.login(username='testuser', password='test')
self.assertTrue(r)

Zoo(name='Burgers Zoo', opening_time='11:00:00Z').save()
Zoo(name='Artis', opening_time='09:00:00Z').save()
Zoo(name='Burgers Zoo', opening_time='11:00:00').save()
Zoo(name='Artis', opening_time='09:00:00').save()


def test_time_filter_exact_match(self):
Expand Down

0 comments on commit ec3cd6a

Please sign in to comment.