Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
constanca-m committed Apr 17, 2024
1 parent 24b88f9 commit d12f13a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/handlers/aws/test_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import base64
import datetime
import importlib
import logging
import os
import sys
from copy import deepcopy
Expand Down Expand Up @@ -394,6 +395,13 @@ class TestLambdaHandlerNoop(TestCase):
new={"aws:s3": "s3-sqs", "aws:sqs": "sqs", "aws:kinesis": "kinesis-data-stream", "dummy": "s3-sqs"},
)
def test_lambda_handler_noop(self) -> None:
print("Test lambda handler noop")

logger = logging.getLogger()
logger.info(
"Test lambda handler noop"
)

reload_handlers_aws_handler()

with self.subTest("no originalEventSourceARN in messageAttributes"):
Expand Down

0 comments on commit d12f13a

Please sign in to comment.