From 152690007a3b87ee0047bcad78b2673111ff1928 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Mon, 18 Aug 2025 21:52:18 +0200 Subject: [PATCH] testcase execution level dictionary fixed to have strings as keys --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index d61199e..e977be8 100644 --- a/__init__.py +++ b/__init__.py @@ -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):