aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/core/testcase.py
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting/core/testcase.py')
-rw-r--r--xtesting/core/testcase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/xtesting/core/testcase.py b/xtesting/core/testcase.py
index 15936f1d..672ba3f7 100644
--- a/xtesting/core/testcase.py
+++ b/xtesting/core/testcase.py
@@ -89,7 +89,7 @@ class TestCase(metaclass=abc.ABCMeta):
return msg.get_string()
except AssertionError:
self.__logger.error("We cannot print invalid objects")
- return super(TestCase, self).__str__()
+ return super().__str__()
def get_duration(self):
"""Return the duration of the test case.