8784: Fix test for latest firefox.
[arvados.git] / sdk / python / tests / performance / test_a_sample.py
index dff098403dfffbba967b63c67702e7d27251c507..0c5fe3adc8819dfb5670318464679f27ae95d660 100644 (file)
@@ -1,6 +1,9 @@
+from __future__ import print_function
+from __future__ import absolute_import
+from builtins import range
 import unittest
 
-from performance_profiler import profiled
+from .performance_profiler import profiled
 
 class PerformanceTestSample(unittest.TestCase):
     def foo(self):
@@ -12,4 +15,4 @@ class PerformanceTestSample(unittest.TestCase):
         for i in range(0,2**20):
             j += i
         self.foo()
-        print 'Hello'
+        print('Hello')