Skip to content

Commit

Permalink
Merge pull request #657 from CTPUG/bugfix/issue_655
Browse files Browse the repository at this point in the history
Bugfix/issue 655
  • Loading branch information
drnlm committed Jan 19, 2023
2 parents 8abed9f + be62118 commit c03758b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'django-select2',
'djangorestframework',
'drf-extensions>=0.5.0',
'icalendar>=4.0,<5.0',
'icalendar>=4.0',
'jsonfield',
'markdown>=2.5',
'pillow',
Expand Down
1 change: 0 additions & 1 deletion wafer/schedule/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1523,7 +1523,6 @@ def test_ics_view(self):
self.assertEqual(len(calendar.walk(name='VEVENT')), 9)
# Check we have the right time in places
event = calendar.walk(name='VEVENT')[0]
self.assertEqual(event['dtstart'].params['value'], 'DATE-TIME')
self.assertEqual(event['dtstart'].dt, D.datetime(2013, 9, 22, 10, 0, 0, tzinfo=D.timezone.utc))
# Check that we have the page slug in the ical event
self.assertTrue('/test0/' in event['url'])
Expand Down

0 comments on commit c03758b

Please sign in to comment.