diff --git a/tests/unit/processor/base.py b/tests/unit/processor/base.py index e4a8e0228..0a0f4c6ad 100644 --- a/tests/unit/processor/base.py +++ b/tests/unit/processor/base.py @@ -250,7 +250,6 @@ def test_process_writes_debug_messages(self, mock_debug): event = {} self.object.process(event) mock_debug.assert_called() - mock_debug.assert_called_with(f"{self.object.describe()} processing event {event}") def test_config_attribute_is_config_object(self): assert isinstance(self.object._config, self.object.Config)