Merge branch '14965-arv-mount-py-three'
[arvados.git] / services / fuse / tests / test_crunchstat.py
index 1fa28fb2d4b87105899957df771454035fd795d7..3cf15fe1139893427b0b8c355a17ec27c2f7ed15 100644 (file)
@@ -1,6 +1,11 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# 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):
@@ -10,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)