diff --git a/tests/test_rule_catalog.py b/tests/test_rule_catalog.py index f6707cb..aa264a7 100644 --- a/tests/test_rule_catalog.py +++ b/tests/test_rule_catalog.py @@ -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 ( @@ -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 (