Skip to content

Commit

Permalink
fix: add is_ignored=True to test to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
EreminAnton committed Nov 12, 2024
1 parent 719515e commit 72df469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/test_message_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def test_message_should_not_be_processed_with_rules_as_ignor_rules(message_shoul
event = message_should_be_processed_test_cases["event"],
rules = default_rules,
ignore_rules = default_rules
) == ProcessingResult(should_be_processed=False, errors=[])
) == ProcessingResult(should_be_processed=False, errors=[], is_ignored=True)


def test_should_message_be_processed_with_ParsingEventError_handling(
Expand Down

0 comments on commit 72df469

Please sign in to comment.