Skip to content

Commit

Permalink
correct typo of max_path_length
Browse files Browse the repository at this point in the history
This commit corrects a typo that leads
to a failing `test_wtf` if `psutil` < 6.0.0
is installed.
  • Loading branch information
christian-monch committed Jul 1, 2024
1 parent 35564bf commit 9bf2feb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datalad/local/tests/test_wtf.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def test_wtf(topdir=None):
if external_versions['psutil'] < '6.0.0':
# filesystems detail should be reported, unless 6.0.0 where
# it was removed. See https://github.com/giampaolo/psutil/issues/2109
assert_in('max_pathlength:', cmo.out)
assert_in('max_path_length:', cmo.out)
else:
assert_in("Hint: install psutil", cmo.out)

Expand Down

0 comments on commit 9bf2feb

Please sign in to comment.