[ARVADOS] updated: 1.3.0-1106-g9886b0f00

Git user git at public.curoverse.com
Tue Jun 25 21:08:47 UTC 2019


Summary of changes:
 services/fuse/tests/test_mount_type.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

       via  9886b0f0059b31dd28482f63f32c40671f30396f (commit)
      from  ecea0fa102bea186e752b20386c4a59d86ec7c92 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 9886b0f0059b31dd28482f63f32c40671f30396f
Author: Eric Biagiotti <ebiagiotti at veritasgenetics.com>
Date:   Mon Jun 24 14:18:53 2019 -0400

    14965: Fixes subprocess.check_output parsing
    
    Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti <ebiagiotti at veritasgenetics.com>

diff --git a/services/fuse/tests/test_mount_type.py b/services/fuse/tests/test_mount_type.py
index 833fdb382..fffa41f49 100644
--- a/services/fuse/tests/test_mount_type.py
+++ b/services/fuse/tests/test_mount_type.py
@@ -2,7 +2,6 @@
 #
 # SPDX-License-Identifier: AGPL-3.0
 
-from future.utils import tobytes
 import logging
 import subprocess
 
@@ -22,7 +21,7 @@ class MountTypeTest(IntegrationTest):
             toks[4]
             for toks in [
                 line.split(' ')
-                for line in subprocess.check_output(tobytes("mount")).split("\n")
+                for line in subprocess.check_output("mount").decode().split("\n")
             ]
             if len(toks) > 4 and toks[2] == mnt
         ])

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list