aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/core/unit.py
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting/core/unit.py')
-rw-r--r--xtesting/core/unit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/xtesting/core/unit.py b/xtesting/core/unit.py
index 9d549a2d..8bcf163a 100644
--- a/xtesting/core/unit.py
+++ b/xtesting/core/unit.py
@@ -32,7 +32,7 @@ class Suite(testcase.TestCase):
__logger = logging.getLogger(__name__)
def __init__(self, **kwargs):
- super(Suite, self).__init__(**kwargs)
+ super().__init__(**kwargs)
self.suite = None
@classmethod