mirror of https://github.com/python/cpython
Issue #21707: Fix tests on Windows.
This commit is contained in:
parent
799a60ccb4
commit
a90afbc7ee
|
@ -316,7 +316,7 @@ class ModuleFinderTest(unittest.TestCase):
|
|||
self._do_test(maybe_test, debug=2,
|
||||
replace_paths=[(old_path, new_path)])
|
||||
output = output.getvalue()
|
||||
expected = "co_filename '%s' changed to '%s'" % (old_path, new_path)
|
||||
expected = "co_filename %r changed to %r" % (old_path, new_path)
|
||||
self.assertIn(expected, output)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue