Skip to content

Commit

Permalink
remove no longer needed rule disabling
Browse files Browse the repository at this point in the history
  • Loading branch information
npeshkov committed Dec 16, 2024
1 parent a352233 commit c3e5632
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/test_rule_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
def test_rule_catalog_terminal(capsys, default_config):
"""Test rule catalog with the terminal formatter."""
default_config.overload({"rule_namespaces": ["tests.rules"]})
default_config.overload(
{"disabled_rules": ["tests.rules.imported.original.rule_to_be_imported"]}
)
display_catalog(default_config, "Doc for tests.rules", "terminal")
stdout = capsys.readouterr().out
assert (
Expand All @@ -26,9 +23,6 @@ def test_rule_catalog_terminal(capsys, default_config):
def test_rule_catalog_markdown(capsys, default_config):
"""Test rule catalog with the markdown formatter."""
default_config.overload({"rule_namespaces": ["tests.rules"]})
default_config.overload(
{"disabled_rules": ["tests.rules.imported.original.rule_to_be_imported"]}
)
display_catalog(default_config, "Doc for tests.rules", "markdown")
stdout = capsys.readouterr().out
assert (
Expand Down

0 comments on commit c3e5632

Please sign in to comment.