Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
FHIR-2646
  • Loading branch information
Bloom committed Dec 18, 2024
1 parent c70b0cf commit 66e333d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pilot/jupyter/test_fhir_fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ def test_fetch_all_data_with_other_error(MockSession):
def test_fetch_all_data_with_num_pages(MockSession):
mock_session = MockSession.return_value
mock_response1 = mock_response_with_entries(
[{"resource": {"id": "1"}}], "http://example.com/next")
[{"resource": {"id": "1"}}],
"http://example.com/next")
mock_response2 = mock_response_with_entries([{"resource": {"id": "2"}}])
mock_session.get.side_effect = [mock_response1, mock_response2]

Expand Down

0 comments on commit 66e333d

Please sign in to comment.