diff options
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() |