Change test to iterate through messages instead of accessing _queued_messages directly

This commit is contained in:
Thorrak 2020-11-26 11:23:46 -05:00
parent 894dbce645
commit ed69df4403

View File

@ -61,7 +61,11 @@ class TestUserUpdateView:
form.cleaned_data = []
view.form_valid(form)
assert messages.get_messages(request)._queued_messages[0].message == "Information successfully updated"
found_message = False
for message in messages.get_messages(request):
assert message.message == "Information successfully updated"
found_message = True
assert found_message
class TestUserRedirectView: