diff options
Diffstat (limited to 'xtesting/core/vnf.py')
-rw-r--r-- | xtesting/core/vnf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtesting/core/vnf.py b/xtesting/core/vnf.py index 8aab2337..72d54b51 100644 --- a/xtesting/core/vnf.py +++ b/xtesting/core/vnf.py @@ -42,7 +42,7 @@ class VnfOnBoarding(testcase.TestCase): __logger = logging.getLogger(__name__) def __init__(self, **kwargs): - super(VnfOnBoarding, self).__init__(**kwargs) + super().__init__(**kwargs) self.uuid = uuid.uuid4() self.user_name = "{}-{}".format(self.case_name, self.uuid) self.tenant_name = "{}-{}".format(self.case_name, self.uuid) |