bpo-36948: Fix test_urlopener_retrieve_file on Windows (GH-13476)

This commit is contained in:
Berker Peksag 2019-05-22 02:00:35 +03:00 committed by GitHub
parent eca18aac7b
commit 2725cb01d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1470,7 +1470,8 @@ class URLopener_Tests(FakeHTTPMixin, unittest.TestCase):
os.close(fd)
fileurl = "file:" + urllib.request.pathname2url(tmpfile)
filename, _ = urllib.request.URLopener().retrieve(fileurl)
self.assertEqual(filename, tmpfile)
# Some buildbots have TEMP folder that uses a lowercase drive letter.
self.assertEqual(os.path.normcase(filename), os.path.normcase(tmpfile))
@support.ignore_warnings(category=DeprecationWarning)
def test_urlopener_retrieve_remote(self):