diff --git a/tests/providers/amazon/aws/operators/test_sqs.py b/tests/providers/amazon/aws/operators/test_sqs.py index 327d47c6135c4..1cbe9a1d9689a 100644 --- a/tests/providers/amazon/aws/operators/test_sqs.py +++ b/tests/providers/amazon/aws/operators/test_sqs.py @@ -87,7 +87,9 @@ def test_execute_failure_fifo_queue(self): def test_execute_success_fifo_queue(self): self.operator.sqs_queue = FIFO_QUEUE_URL self.operator.message_group_id = "abc" - self.sqs_hook.create_queue(FIFO_QUEUE_NAME, attributes={"FifoQueue": "true"}) + self.sqs_hook.create_queue( + FIFO_QUEUE_NAME, attributes={"FifoQueue": "true", "ContentBasedDeduplication": "true"} + ) result = self.operator.execute(self.mock_context) assert "MD5OfMessageBody" in result assert "MessageId" in result