summaryrefslogtreecommitdiffstats
path: root/tests/lib/utils.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-23 05:06:51 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-23 05:06:51 +0000
commit57f704845136d9d0f0266c880cfa1dd7b902e880 (patch)
tree1c7ffc0d0bf371b2e3d425efbb1c055a24340dc7 /tests/lib/utils.py
parentReleasing debian version 0.14.0-2. (diff)
downloadanta-57f704845136d9d0f0266c880cfa1dd7b902e880.tar.xz
anta-57f704845136d9d0f0266c880cfa1dd7b902e880.zip
Merging upstream version 0.15.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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]: