File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 22import os
33from io import BytesIO
44from unittest .mock import patch
5- from moto import mock_kinesis , mock_firehose
65from batch_processor import process_csv_to_fhir
76
87
@@ -11,8 +10,6 @@ def create_patch(target: str):
1110 return patcher .start ()
1211
1312
14- @mock_kinesis
15- @mock_firehose
1613class TestProcessCsvToFhir (unittest .TestCase ):
1714
1815 def setUp (self ):
@@ -27,7 +24,6 @@ def setUp(self):
2724 self .mock_move_file = create_patch ("file_level_validation.move_file" )
2825 self .mock_get_permitted_operations = create_patch ("file_level_validation.get_permitted_operations" )
2926 self .mock_firehose_client = create_patch ("logging_decorator.firehose_client" )
30- self .mock_firehose_client .put_record .return_value = True
3127
3228 def tearDown (self ):
3329 patch .stopall ()
You can’t perform that action at this time.
0 commit comments