diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2021-06-03 06:16:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2021-06-03 06:16:49 +0000 |
commit | ec6921039af3b016eecc6e609f2554aea0f81e2c (patch) | |
tree | 4d2df62475e73a563e572180a13dec3b5e1b994e /xtesting/samples/first.py | |
parent | 454bef238020d8ac0e986807f34dfc140362b629 (diff) | |
parent | a656fd764b0a608caaf198bfa9685a09a7eaca16 (diff) |
Merge "Drop six"
Diffstat (limited to 'xtesting/samples/first.py')
-rw-r--r-- | xtesting/samples/first.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xtesting/samples/first.py b/xtesting/samples/first.py index e8a17b23..5e240ed8 100644 --- a/xtesting/samples/first.py +++ b/xtesting/samples/first.py @@ -11,8 +11,6 @@ import time -import six - from xtesting.core import testcase @@ -20,6 +18,6 @@ class Test(testcase.TestCase): def run(self, **kwargs): self.start_time = time.time() - six.print_("Hello World") + print("Hello World") self.result = 100 self.stop_time = time.time() |