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

Unified Diff: appengine/findit/waterfall/test/detect_first_failure_pipeline_test.py

Issue 2611723002: Moved http_client_appengine.py from ./common to ./gae_libs/http (Closed)
Patch Set: adding missing __init__.py file Created 3 years, 12 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 | « appengine/findit/waterfall/swarming_util.py ('k') | appengine/findit/waterfall/test/swarming_util_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/waterfall/test/detect_first_failure_pipeline_test.py
diff --git a/appengine/findit/waterfall/test/detect_first_failure_pipeline_test.py b/appengine/findit/waterfall/test/detect_first_failure_pipeline_test.py
index 108bf325abd5075124ec457a4eb54f2723fcb03b..251257dadd7d59de4555bb478e4fbac9b43b7b74 100644
--- a/appengine/findit/waterfall/test/detect_first_failure_pipeline_test.py
+++ b/appengine/findit/waterfall/test/detect_first_failure_pipeline_test.py
@@ -9,9 +9,9 @@ import os
import urllib
import zlib
-from common.http_client_appengine import HttpClientAppengine as HttpClient
from common.pipeline_wrapper import pipeline_handlers
from common.waterfall import failure_type
+from gae_libs.http.http_client_appengine import HttpClientAppengine
from model import analysis_status
from model.wf_analysis import WfAnalysis
from model.wf_build import WfBuild
@@ -433,7 +433,7 @@ class DetectFirstFailureTest(wf_testcase.WaterfallTestCase):
pipeline = DetectFirstFailurePipeline()
pipeline._UpdateFirstFailureOnTestLevel(
master_name, builder_name, build_number, step_name, failed_step,
- HttpClient())
+ HttpClientAppengine())
expected_failed_step = {
'current_failure': 223,
@@ -479,7 +479,7 @@ class DetectFirstFailureTest(wf_testcase.WaterfallTestCase):
pipeline = DetectFirstFailurePipeline()
pipeline._UpdateFirstFailureOnTestLevel(
master_name, builder_name, build_number, step_name, failed_step,
- HttpClient())
+ HttpClientAppengine())
expected_failed_step = {
'current_failure': 223,
« no previous file with comments | « appengine/findit/waterfall/swarming_util.py ('k') | appengine/findit/waterfall/test/swarming_util_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698