Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
feat(submission_page): changing test
Browse files Browse the repository at this point in the history
  • Loading branch information
LuizaMaluf authored and bitterteriyaki committed Dec 2, 2023
1 parent 47eb0d5 commit 719c444
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/submissions/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,5 @@ def test_submission_list_view(self) -> None:
response = self.client.get(url)

self.assertEqual(response.status_code, 200)
self.assertTrue("submissions" in response.context)
self.assertIn("submissions", response.context)
self.assertIn(self.submission, response.context["submissions"])

0 comments on commit 719c444

Please sign in to comment.