Skip to content

Commit 3087ac6

Browse files
committed
INC-240 - fixed test case 1
1 parent e75893e commit 3087ac6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

helix_fhir_client_sdk/fhir_client.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,10 @@ async def get_async(
587587
fn_handle_streaming_chunk=data_chunk_handler,
588588
):
589589
if response:
590-
full_response = response
590+
if full_response:
591+
full_response.append(response)
592+
else:
593+
full_response = response
591594
assert full_response
592595
return full_response
593596

0 commit comments

Comments
 (0)