Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
woodthom2 committed Aug 21, 2024
1 parent ef25a4d commit d55bf55
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/local_tests/test_match_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
class TestMatch(unittest.TestCase):

def test_gad_7_correct_size_dictionary_response(self):
self.assertEqual(3, len(response.json()))
self.assertEqual(5, len(response.json()))

def test_gad_7_first_question_conserved(self):
self.assertEqual("Feeling nervous, anxious, or on edge", response.json()["questions"][0]["question_text"])
Expand Down
2 changes: 1 addition & 1 deletion tests/remote_tests/test_match_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
class TestMatch(unittest.TestCase):

def test_gad_7_correct_size_dictionary_response(self):
self.assertEqual(3, len(response.json()))
self.assertEqual(5, len(response.json()))

def test_gad_7_first_question_conserved(self):
self.assertEqual("Feeling nervous, anxious, or on edge", response.json()["questions"][0]["question_text"])
Expand Down
2 changes: 1 addition & 1 deletion tests/staging_tests/test_match_staging.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
class TestMatch(unittest.TestCase):

def test_gad_7_correct_size_dictionary_response(self):
self.assertEqual(3, len(response.json()))
self.assertEqual(5, len(response.json()))

def test_gad_7_first_question_conserved(self):
self.assertEqual("Feeling nervous, anxious, or on edge", response.json()["questions"][0]["question_text"])
Expand Down

0 comments on commit d55bf55

Please sign in to comment.