X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/777e716728a7da63ece00df7e5bb8be7f9a2a1a3..7f0f12c40238f3eb12a51877a755cf22357e0767:/services/fuse/tests/test_crunchstat.py diff --git a/services/fuse/tests/test_crunchstat.py b/services/fuse/tests/test_crunchstat.py index 1fa28fb2d4..32272a83c4 100644 --- a/services/fuse/tests/test_crunchstat.py +++ b/services/fuse/tests/test_crunchstat.py @@ -1,7 +1,10 @@ -import subprocess +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 -from integration_test import IntegrationTest +import subprocess +from .integration_test import IntegrationTest class CrunchstatTest(IntegrationTest): def test_crunchstat(self): @@ -10,4 +13,4 @@ class CrunchstatTest(IntegrationTest): '--crunchstat-interval', '1', self.mnt, '--exec', 'echo', 'ok']) - self.assertEqual("ok\n", output) + self.assertEqual(b"ok\n", output)