Fixed test to correspond to the changes in the mock data

This commit is contained in:
mike cullerton 2021-05-14 12:35:36 -04:00
parent 1509bf23f8
commit b0fcb09581
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class TestProtocolBuilder(BaseTest):
response = ProtocolBuilderService.get_study_details(self.test_study_id)
self.assertIsNotNone(response)
self.assertEqual(64, len(response))
self.assertEqual(1234, response['IND_1'])
self.assertEqual('1234', response['IND_1'])
@patch('crc.services.protocol_builder.requests.get')
def test_get_study_sponsors(self, mock_get):