Skip to content

Commit 29324d5

Browse files
committed
tidy
1 parent 7fea758 commit 29324d5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

recordprocessor/tests/test_batch_processor.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import os
33
from io import BytesIO
44
from unittest.mock import patch
5-
from moto import mock_kinesis, mock_firehose
65
from 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
1613
class 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()

0 commit comments

Comments
 (0)