From 6abfaec799efbafd22867915ce56c9c67c390518 Mon Sep 17 00:00:00 2001 From: Cor Zuurmond Date: Fri, 14 Feb 2025 16:22:30 +0100 Subject: [PATCH] Remove test for remove attribute --- tests/unit/contexts/test_application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/contexts/test_application.py b/tests/unit/contexts/test_application.py index 06e620c342..13d7b498e6 100644 --- a/tests/unit/contexts/test_application.py +++ b/tests/unit/contexts/test_application.py @@ -33,7 +33,7 @@ def test_global_context_attributes_not_none(attribute: str) -> None: assert getattr(ctx, attribute) is not None -@pytest.mark.parametrize("attribute", ["local_file_migrator", "local_code_linter"]) +@pytest.mark.parametrize("attribute", ["local_code_linter"]) def test_local_context_attributes_not_none(attribute: str) -> None: """Attributes should be not None""" # Goal is to improve test coverage