Github Actions Test Cases (#121)

This commit is contained in:
Chris Caron
2023-05-19 19:12:03 -04:00
committed by GitHub
parent 0f301272f2
commit 35553a9f0a
9 changed files with 144 additions and 36 deletions

View File

@ -99,7 +99,8 @@ class StatefulNotifyTests(SimpleTestCase):
form = NotifyForm(data=form_data)
assert form.is_valid()
# Required to prevent None from being passed into self.client.post()
# Required to prevent None from being passed into
# self.client.post()
del form.cleaned_data['attachment']
response = self.client.post(
@ -146,7 +147,8 @@ class StatefulNotifyTests(SimpleTestCase):
form = NotifyForm(data=form_data)
assert form.is_valid()
# Required to prevent None from being passed into self.client.post()
# Required to prevent None from being passed into
# self.client.post()
del form.cleaned_data['attachment']
response = self.client.post(