From 76d11fa6f4aef4a6d6373c2baf12aa886a8b06f9 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sun, 18 Nov 2018 17:13:21 +0000 Subject: Use fusermount3 instead of fusermount We're using libfuse3, so we should be using its fusermount command. --- test/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/util.py b/test/util.py index 34f1049..cde0255 100644 --- a/test/util.py +++ b/test/util.py @@ -32,7 +32,7 @@ def cleanup(mount_process, mnt_dir): def umount(mount_process, mnt_dir): - subprocess.check_call(['fusermount', '-z', '-u', mnt_dir ]) + subprocess.check_call(['fusermount3', '-z', '-u', mnt_dir ]) assert not os.path.ismount(mnt_dir) # Give mount process a little while to terminate. Popen.wait(timeout) -- cgit v1.2.3