summaryrefslogtreecommitdiffstats
path: root/tests/lib/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/utils.py')
-rw-r--r--tests/lib/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/utils.py b/tests/lib/utils.py
index 1255936..ba669c2 100644
--- a/tests/lib/utils.py
+++ b/tests/lib/utils.py
@@ -28,7 +28,7 @@ def generate_test_ids(data: list[dict[str, Any]]) -> list[str]:
...
}
"""
- return [f"{val['test'].__module__}.{val['test'].__name__}-{val['name']}" for val in data]
+ return [f"{val['test'].module}.{val['test'].__name__}-{val['name']}" for val in data]
def default_anta_env() -> dict[str, str | None]: