summaryrefslogtreecommitdiffstats
path: root/tests/conftest.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/conftest.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/conftest.py')
-rw-r--r--tests/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 7aa229c..d6b1b8c 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -35,7 +35,7 @@ def build_test_id(val: dict[str, Any]) -> str:
...
}
"""
- return f"{val['test'].__module__}.{val['test'].__name__}-{val['name']}"
+ return f"{val['test'].module}.{val['test'].__name__}-{val['name']}"
def pytest_generate_tests(metafunc: pytest.Metafunc) -> None: