From 5bd776a62129e4f9ecba74651db7a436f92e170f Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 17 Apr 2022 13:06:03 +1000 Subject: [PATCH] Updated function name --- Tests/test_util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/test_util.py b/Tests/test_util.py index ab2a4d0c4..9582c560d 100644 --- a/Tests/test_util.py +++ b/Tests/test_util.py @@ -36,7 +36,7 @@ def test_path_like_is_path(): test_path = PathThingy() # Act - it_is = _util.isPath(test_path) + it_is = _util.is_path(test_path) # Assert assert it_is @@ -64,7 +64,7 @@ def test_path_like_file_is_not_path(tmp_path): with PathAndFileThingy(open(tmp_path / "temp.ext", "wb")) as test_obj: # Act - it_is_not = _util.isPath(test_obj) + it_is_not = _util.is_path(test_obj) # Assert assert not it_is_not