Skip to content

Commit e96c1e1

Browse files
committed
Update remote API tests to reflect changes
harmonydata/harmony#101
1 parent 067e795 commit e96c1e1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tests/remote_tests/test_match_remote_bigger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1477,7 +1477,7 @@
14771477
class TestMatchBiggerPayload(unittest.TestCase):
14781478

14791479
def test_big_match_command(self):
1480-
self.assertEqual(7, len(response.json()))
1480+
self.assertEqual(8, len(response.json()))
14811481

14821482

14831483
if __name__ == '__main__':

tests/remote_tests/test_negate_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
class TestMatch(unittest.TestCase):
6363

6464
def test_negation_instrument_correct_size_dictionary_response(self):
65-
self.assertEqual(7, len(response.json()))
65+
self.assertEqual(8, len(response.json()))
6666

6767
def test_negation_instrument_first_question_conserved(self):
6868
self.assertEqual("I feel nervous", response.json()["questions"][0]["question_text"])

tests/staging_tests/test_match_staging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
class TestMatch(unittest.TestCase):
124124

125125
def test_gad_7_correct_size_dictionary_response(self):
126-
self.assertEqual(7, len(response.json()))
126+
self.assertEqual(8, len(response.json()))
127127

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

tests/staging_tests/test_match_staging_bigger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1477,7 +1477,7 @@
14771477
class TestMatchBiggerPayload(unittest.TestCase):
14781478

14791479
def test_big_match_command(self):
1480-
self.assertEqual(7, len(response.json()))
1480+
self.assertEqual(8, len(response.json()))
14811481

14821482

14831483
if __name__ == '__main__':

tests/staging_tests/test_negate_staging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
class TestMatch(unittest.TestCase):
6363

6464
def test_negation_instrument_correct_size_dictionary_response(self):
65-
self.assertEqual(7, len(response.json()))
65+
self.assertEqual(8, len(response.json()))
6666

6767
def test_negation_instrument_first_question_conserved(self):
6868
self.assertEqual("I feel nervous", response.json()["questions"][0]["question_text"])

0 commit comments

Comments
 (0)