We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea972f commit 660bf92Copy full SHA for 660bf92
tests/test_modutils.py
@@ -275,8 +275,7 @@ def test_std_lib_found_before_same_named_package_on_path(self) -> None:
275
sys_path = str(sys.path)
276
277
file = modutils.file_from_modpath(["copy"])
278
- if WIN32:
279
- raise AssertionError(str(resource, sys_path, file))
+ raise AssertionError('\n'.join(resource, sys_path, file))
280
self.assertNotIn("test", file) # tests/testdata/python3/data/copy.py
281
self.assertTrue(any(stdlib in file for stdlib in modutils.STD_LIB_DIRS))
282
0 commit comments