Skip to content

Commit

Permalink
aaq urgency check endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Hlamallama committed Aug 6, 2024
1 parent 1464ec4 commit 02fbae6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aaq/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ class CheckUrgencyV2ViewTests(APITestCase):
@responses.activate
def test_urgency_check_urgent(self):
"""
Test that we can get an urgency score of 1.0
Test that we can get is urgent True
"""
user = get_user_model().objects.create_user("test")
self.client.force_authenticate(user)
Expand Down Expand Up @@ -569,7 +569,7 @@ def test_urgency_check_urgent(self):
@responses.activate
def test_urgency_check_not_urgent(self):
"""
Test that we can get an urgency score of 0.0
Test that we can get is urgent False
"""
user = get_user_model().objects.create_user("test")
self.client.force_authenticate(user)
Expand Down

0 comments on commit 02fbae6

Please sign in to comment.