From b5702b097a083bfda53f75380d63ce571707c3fa Mon Sep 17 00:00:00 2001 From: Christian Monch Date: Mon, 1 Jul 2024 10:48:52 +0200 Subject: [PATCH] correct typo in `max_path_length` This commit corrects a typo in the test `datalad.local.tests.test_wtf.test_wtf`. --- datalad/local/tests/test_wtf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datalad/local/tests/test_wtf.py b/datalad/local/tests/test_wtf.py index c7a362ae35..d6f7585f29 100644 --- a/datalad/local/tests/test_wtf.py +++ b/datalad/local/tests/test_wtf.py @@ -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)