Skip to content

Commit

Permalink
Use fusermount3 instead of fusermount
Browse files Browse the repository at this point in the history
We're using libfuse3, so we should be using its fusermount command.
  • Loading branch information
Nikratio committed Dec 22, 2018
1 parent 9ced6ca commit 76d11fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 76d11fa

Please sign in to comment.