mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #21707: Fix tests on Windows.
This commit is contained in:
parent
799a60ccb4
commit
a90afbc7ee
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue