Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Jan 2, 2024
1 parent 7275eb8 commit 73a04a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psutil/tests/test_linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ def test_against_findmnt(self):

def parse_findmnt(out):
ls = []
out = sh(["findmnt", "--all", "--list"])
out = sh(["findmnt", "--all", "--list", "--nofsroot"])
for line in out.splitlines()[1:]:
mountpoint, device, fstype, opts = line.split()
ls.append((device, mountpoint, fstype, opts))
Expand Down

0 comments on commit 73a04a2

Please sign in to comment.