Skip to content

Commit c3e5632

Browse files
committed
remove no longer needed rule disabling
1 parent a352233 commit c3e5632

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/test_rule_catalog.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
def test_rule_catalog_terminal(capsys, default_config):
77
"""Test rule catalog with the terminal formatter."""
88
default_config.overload({"rule_namespaces": ["tests.rules"]})
9-
default_config.overload(
10-
{"disabled_rules": ["tests.rules.imported.original.rule_to_be_imported"]}
11-
)
129
display_catalog(default_config, "Doc for tests.rules", "terminal")
1310
stdout = capsys.readouterr().out
1411
assert (
@@ -26,9 +23,6 @@ def test_rule_catalog_terminal(capsys, default_config):
2623
def test_rule_catalog_markdown(capsys, default_config):
2724
"""Test rule catalog with the markdown formatter."""
2825
default_config.overload({"rule_namespaces": ["tests.rules"]})
29-
default_config.overload(
30-
{"disabled_rules": ["tests.rules.imported.original.rule_to_be_imported"]}
31-
)
3226
display_catalog(default_config, "Doc for tests.rules", "markdown")
3327
stdout = capsys.readouterr().out
3428
assert (

0 commit comments

Comments
 (0)