16039: Fix & add test for sanitized/unsanitized name conflict.
[arvados.git] / services / fuse / tests / test_crunchstat.py
index f3bf21121ab8512a66d2e2eef1a93aa1e8b481e8..3cf15fe1139893427b0b8c355a17ec27c2f7ed15 100644 (file)
@@ -2,9 +2,10 @@
 #
 # SPDX-License-Identifier: AGPL-3.0
 
+from __future__ import absolute_import
 import subprocess
 
-from integration_test import IntegrationTest
+from .integration_test import IntegrationTest
 
 
 class CrunchstatTest(IntegrationTest):
@@ -14,4 +15,4 @@ class CrunchstatTest(IntegrationTest):
              '--crunchstat-interval', '1',
              self.mnt,
              '--exec', 'echo', 'ok'])
-        self.assertEqual("ok\n", output)
+        self.assertEqual(b"ok\n", output)