aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/core/behaveframework.py
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting/core/behaveframework.py')
-rw-r--r--xtesting/core/behaveframework.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/xtesting/core/behaveframework.py b/xtesting/core/behaveframework.py
index ee6e8603..3dc60384 100644
--- a/xtesting/core/behaveframework.py
+++ b/xtesting/core/behaveframework.py
@@ -31,7 +31,7 @@ class BehaveFramework(testcase.TestCase):
__logger = logging.getLogger(__name__)
def __init__(self, **kwargs):
- super(BehaveFramework, self).__init__(**kwargs)
+ super().__init__(**kwargs)
self.json_file = os.path.join(self.res_dir, 'output.json')
self.total_tests = 0
self.pass_tests = 0