From 5ebf18260c6cfcd26889917a8bac844d6d0ed764 Mon Sep 17 00:00:00 2001 From: "Gareth J. Greenaway" Date: Thu, 16 Nov 2023 13:55:28 -0800 Subject: [PATCH] removing parens from pytest.fixture. --- tests/pytests/unit/modules/test_textfsm_mod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytests/unit/modules/test_textfsm_mod.py b/tests/pytests/unit/modules/test_textfsm_mod.py index 1f7c99c8d62..ebf790055c6 100644 --- a/tests/pytests/unit/modules/test_textfsm_mod.py +++ b/tests/pytests/unit/modules/test_textfsm_mod.py @@ -13,7 +13,7 @@ textfsm = pytest.importorskip( ) -@pytest.fixture() +@pytest.fixture def configure_loader_modules(): return {textfsm_mod: {"__opts__": {}}}