From d12f13a5aef13303229cc860125368f62a942174 Mon Sep 17 00:00:00 2001 From: constanca Date: Wed, 17 Apr 2024 12:28:26 +0200 Subject: [PATCH] . --- tests/handlers/aws/test_handler.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/handlers/aws/test_handler.py b/tests/handlers/aws/test_handler.py index 6858d0bd..38458311 100644 --- a/tests/handlers/aws/test_handler.py +++ b/tests/handlers/aws/test_handler.py @@ -5,6 +5,7 @@ import base64 import datetime import importlib +import logging import os import sys from copy import deepcopy @@ -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"):