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

Unified Diff: appengine/chromium_try_flakes/findit/test/findit_test.py

Issue 2438673004: [Findit] Post analysis results of flakes to bug filed by chromium-try-flakes. (Closed)
Patch Set: Add a config flag to enable/disable updating monorail bug. Created 4 years, 1 month 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
Index: appengine/chromium_try_flakes/findit/test/findit_test.py
diff --git a/appengine/chromium_try_flakes/findit/test/findit_test.py b/appengine/chromium_try_flakes/findit/test/findit_test.py
index 4fe9c55075b6fc8e69060628990675055a4ab32a..2641502ba970c7948c3abf420e63f25cc0ed0d40 100644
--- a/appengine/chromium_try_flakes/findit/test/findit_test.py
+++ b/appengine/chromium_try_flakes/findit/test/findit_test.py
@@ -30,8 +30,9 @@ class FindItAPITestCase(testing.AppengineTestCase):
self.client = mock.Mock()
self.build_client = mock.Mock(return_value=self.client)
self.patchers = [
- mock.patch('endpoints.endpoints.build_client', self.build_client),
- mock.patch('endpoints.endpoints.retry_request', mock.Mock()),
+ mock.patch(
+ 'endpoints_client.endpoints.build_client', self.build_client),
+ mock.patch('endpoints_client.endpoints.retry_request', mock.Mock()),
]
for patcher in self.patchers:
patcher.start()
« no previous file with comments | « appengine/chromium_try_flakes/findit/findit.py ('k') | appengine/chromium_try_flakes/issue_tracker/issue_tracker_api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698