summaryrefslogtreecommitdiffstats
path: root/ipatests/pytest_plugins
diff options
context:
space:
mode:
Diffstat (limited to 'ipatests/pytest_plugins')
-rw-r--r--ipatests/pytest_plugins/declarative.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ipatests/pytest_plugins/declarative.py b/ipatests/pytest_plugins/declarative.py
index 1c24cf93d..64e9b0bcd 100644
--- a/ipatests/pytest_plugins/declarative.py
+++ b/ipatests/pytest_plugins/declarative.py
@@ -28,12 +28,12 @@ def pytest_generate_tests(metafunc):
descriptions = []
for i, test in enumerate(metafunc.cls.tests):
if callable(test):
- description = '%d: %s' % (
- i,
+ description = '%s: %s' % (
+ str(i).zfill(4),
test.__name__, # test is not a dict. pylint: disable=E1103
)
else:
- description = '%d: %s: %s' % (i,
+ description = '%s: %s: %s' % (str(i).zfill(4),
test['command'][0],
test.get('desc', ''))
test = dict(test)