Browse Source
bpo-36948: Fix test_urlopener_retrieve_file on Windows (GH-13476)
pull/13486/head
Berker Peksag
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
Lib/test/test_urllib.py
|
|
|
@ -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): |
|
|
|
|