Skip to content

Commit

Permalink
unit test update
Browse files Browse the repository at this point in the history
  • Loading branch information
valentijnscholten committed Jan 31, 2025
1 parent d29bb74 commit 5b13ed4
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions unittests/test_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,6 @@ def test_counters_as_staff(self):

response = self._request("admin")

# temp code to update unit tests
print(response.context["mitigated_count"]) # noqa: T201
print(response.context["accepted_count"]) # noqa: T201

self.assertEqual(3, response.context["engagement_count"])
self.assertEqual(11, response.context["finding_count"])
self.assertEqual(3, response.context["mitigated_count"])
Expand All @@ -131,10 +127,6 @@ def test_counters_as_user(self):

response = self._request("user1")

# temp code to update unit tests
print(response.context["mitigated_count"]) # noqa: T201
print(response.context["accepted_count"]) # noqa: T201

self.assertEqual(3, response.context["engagement_count"])
self.assertEqual(11, response.context["finding_count"])
self.assertEqual(3, response.context["mitigated_count"])
Expand Down

0 comments on commit 5b13ed4

Please sign in to comment.