diff options
Diffstat (limited to 'xtesting/samples/first.py')
-rw-r--r-- | xtesting/samples/first.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xtesting/samples/first.py b/xtesting/samples/first.py index 60de3dc6..b7ec8b6d 100644 --- a/xtesting/samples/first.py +++ b/xtesting/samples/first.py @@ -11,6 +11,8 @@ import time +import six + from xtesting.core import testcase @@ -18,7 +20,7 @@ class Test(testcase.TestCase): def run(self, **kwargs): self.start_time = time.time() - print "Hello World" + six.print_("Hello World") self.result = 100 self.stop_time = time.time() return testcase.TestCase.EX_OK |