diff --git a/aws/logs_monitoring/tests/test_parsing.py b/aws/logs_monitoring/tests/test_parsing.py index bb2ed83c..f5267dd8 100644 --- a/aws/logs_monitoring/tests/test_parsing.py +++ b/aws/logs_monitoring/tests/test_parsing.py @@ -295,14 +295,6 @@ def test_carbon_black_event(self): str(AwsEventSource.CARBONBLACK), ) - def test_step_function_event(self): - self.assertEqual( - parse_event_source( - {"awslogs": "logs"}, "/aws/vendedlogs/states/MyStateMachine-Logs" - ), - str(AwsEventSource.STEPFUNCTION), - ) - def test_cloudwatch_source_if_none_found(self): self.assertEqual( parse_event_source({"awslogs": "logs"}, ""), str(AwsEventSource.CLOUDWATCH)