We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a465d9 commit ed911daCopy full SHA for ed911da
src/sst/core/testingframework/test_engine_unittest.py
@@ -593,7 +593,9 @@ def __init__(
593
# concurrently.
594
if not test_engine_globals.TESTENGINE_CONCURRENTMODE:
595
# Ignore make_tests and wrap_results
596
- super().__init__(suite)
+ # continue using old super invocation to prevent
597
+ # sstsimulator/sst-core#1262
598
+ super(unittest.TestSuite, self).__init__(suite) # type: ignore[name-defined]
599
else:
600
super().__init__(suite, make_tests, wrap_result)
601
0 commit comments