Skip to content

Commit 76d11fa

Browse files
committed
Use fusermount3 instead of fusermount
We're using libfuse3, so we should be using its fusermount command.
1 parent 9ced6ca commit 76d11fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def cleanup(mount_process, mnt_dir):
3232

3333

3434
def umount(mount_process, mnt_dir):
35-
subprocess.check_call(['fusermount', '-z', '-u', mnt_dir ])
35+
subprocess.check_call(['fusermount3', '-z', '-u', mnt_dir ])
3636
assert not os.path.ismount(mnt_dir)
3737

3838
# Give mount process a little while to terminate. Popen.wait(timeout)

0 commit comments

Comments
 (0)