testcase execution level dictionary fixed to have strings as keys

This commit is contained in:
Dirk Alders 2025-08-18 21:52:18 +02:00
parent 7fe492dce2
commit 152690007a

View File

@ -262,7 +262,7 @@ class testSession(dict):
KEY_SUCCESS_TESTS: 0,
KEY_ALL_TESTS: 0,
KEY_EXEC_LVL: TCEL_FULL,
KEY_EXEC_NAMES: TCEL_NAMES,
KEY_EXEC_NAMES: {"%d" % key: TCEL_NAMES[key] for key in TCEL_NAMES},
}
def __init__(self, module_names=[], **kwargs):