X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/38fcd08dda022d0167840fbb65222fe99b75fcf5..1b04eed3fb2dcd6ae8e8e4c3fd624321d61ecaed:/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)