Skip to content

Commit 0e29d93

Browse files
Addressing Andrea's feedback
1 parent 56b9f1e commit 0e29d93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/functional/batch/required_dependencies/test_utilities_batch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def test_batch_processor_not_raise_when_entire_batch_fails_sync(sqs_event_factor
413413
second_record = SQSRecord(sqs_event_factory("fail"))
414414
event = {"Records": [first_record.raw_event, second_record.raw_event]}
415415

416-
# GIVEN the BatchProcessor constructor with raise_on_entire_batch_fail False
416+
# GIVEN the BatchProcessor constructor with raise_on_entire_batch_failure False
417417
processor = BatchProcessor(event_type=EventType.SQS, raise_on_entire_batch_failure=False)
418418

419419
# WHEN processing the messages
@@ -434,7 +434,7 @@ def test_batch_processor_not_raise_when_entire_batch_fails_async(sqs_event_facto
434434
second_record = SQSRecord(sqs_event_factory("fail"))
435435
event = {"Records": [first_record.raw_event, second_record.raw_event]}
436436

437-
# GIVEN the BatchProcessor constructor with raise_on_entire_batch_fail False
437+
# GIVEN the BatchProcessor constructor with raise_on_entire_batch_failure False
438438
processor = AsyncBatchProcessor(event_type=EventType.SQS, raise_on_entire_batch_failure=False)
439439

440440
# WHEN processing the messages

0 commit comments

Comments
 (0)