Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7a6b60f

Browse files
committedJun 26, 2023
str()
1 parent 8768ec3 commit 7a6b60f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tests/test_modutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def test_std_lib(self) -> None:
269269
)
270270

271271
def test_std_lib_found_before_same_named_package_on_path(self) -> None:
272-
sys.path.insert(0, resources.RESOURCE_PATH)
272+
sys.path.insert(0, str(resources.RESOURCE_PATH))
273273
self.addCleanup(sys.path.pop, 0)
274274

275275
file = modutils.file_from_modpath(["copy"])

0 commit comments

Comments
 (0)
Please sign in to comment.