diff --git a/tests/unit/macros/base.py b/tests/unit/macros/base.py index 3d59d22bd..cf8025929 100644 --- a/tests/unit/macros/base.py +++ b/tests/unit/macros/base.py @@ -26,7 +26,7 @@ def config(self, context) -> dict: @pytest.fixture(autouse=True) def var(self, context) -> dict: """ - Anything you put in this dict will be returned by config in the rendered template + Anything you put in this dict will be returned by var in the rendered template """ local_var: Dict[str, Any] = {} context["var"] = lambda key, default=None, **kwargs: local_var.get(key, default)