Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Unified Diff: tests/git_cl_test.py

Issue 10825107: Remove the use of urllib for SSL connections (Closed) Base URL: https://git.chromium.org/chromium/tools/depot_tools.git@master
Patch Set: Update to add docstring and fix mode on open() call Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « git_cl.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/git_cl_test.py
diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
index 0c3736e23ce1b3693c1d8a84e705036df433ba8e..0a916c7d8136add140122b13982b9ed80d3f9665 100755
--- a/tests/git_cl_test.py
+++ b/tests/git_cl_test.py
@@ -431,7 +431,7 @@ class TestGitCl(TestCase):
# others paths, such as /usr/share/locale/....
return True
self.mock(git_cl.os.path, 'exists', Exists)
- self.mock(git_cl.urllib, 'urlretrieve', self._mocked_call)
+ self.mock(git_cl, 'urlretrieve', self._mocked_call)
self.calls = [
((['git', 'config', 'rietveld.server', 'gerrit.chromium.org'],), ''),
((['git', 'config', '--unset-all', 'rietveld.cc'],), ''),
« no previous file with comments | « git_cl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698