diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-22 08:31:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-22 08:31:36 (GMT) |
commit | 80c88f4304a0da47610aee0968df30bce4ac5209 (patch) | |
tree | f623cfede0376a4e7997760fad3057652c60859d /Lib | |
parent | 9fff3865dace7f5e1f1c1039deb8207442acc443 (diff) | |
download | cpython-80c88f4304a0da47610aee0968df30bce4ac5209.zip cpython-80c88f4304a0da47610aee0968df30bce4ac5209.tar.gz cpython-80c88f4304a0da47610aee0968df30bce4ac5209.tar.bz2 |
Fix shutil.which() test for issue #16993.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_shutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index 6ae051b..bfd0fb5 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -1318,7 +1318,7 @@ class TestWhich(unittest.TestCase): # Ask for the file without the ".exe" extension, then ensure that # it gets found properly with the extension. rv = shutil.which(self.temp_file.name[:-4], path=self.dir) - self.assertEqual(rv, self.temp_file.name[:-4] + ".exe") + self.assertEqual(rv, self.temp_file.name[:-4] + ".EXE") class TestMove(unittest.TestCase): |