Skip to content

Commit

Permalink
chore: remove debugging file write from test (#5598)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsparks authored May 11, 2023
1 parent 2163a01 commit 6089d47
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ietf/meeting/tests_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,7 @@ def test_meeting_agenda(self):
# iCal, no session filtering
ical_url = urlreverse("ietf.meeting.views.agenda_ical", kwargs=dict(num=meeting.number))
r = self.client.get(ical_url)
with open('./ical-output.ics', 'w') as f:
f.write(r.content.decode())

assert_ical_response_is_valid(self, r)
self.assertContains(r, "BEGIN:VTIMEZONE")
self.assertContains(r, "END:VTIMEZONE")
Expand Down

1 comment on commit 6089d47

@Ramzan795

This comment was marked as spam.

Please sign in to comment.