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

Unified Diff: milo/buildsource/buildbucket/builder_test.go

Issue 2977863002: [milo] Refactor all html knowledge out of backends. (Closed)
Patch Set: now with case insensitivity Created 3 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 | « milo/buildsource/buildbucket/builder.go ('k') | milo/buildsource/buildbucket/html.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/buildsource/buildbucket/builder_test.go
diff --git a/milo/buildsource/buildbucket/builder_test.go b/milo/buildsource/buildbucket/builder_test.go
index 76fa39ebd242a695d9faa991562dd8d88e70a5d1..c82b770a2299bd921d863324cf18f4b6177cbaeb 100644
--- a/milo/buildsource/buildbucket/builder_test.go
+++ b/milo/buildsource/buildbucket/builder_test.go
@@ -58,12 +58,7 @@ func TestBuilder(t *testing.T) {
err := os.MkdirAll(filepath.Dir(expectationFilePath), 0777)
So(err, ShouldBeNil)
- actual, err := builderImpl(c,
- builderQuery{
- Bucket: tc.bucket,
- Builder: tc.builder,
- Limit: 0,
- })
+ actual, err := GetBuilder(c, tc.bucket, tc.builder, 0)
So(err, ShouldBeNil)
actualJSON, err := json.MarshalIndent(actual, "", " ")
So(err, ShouldBeNil)
« no previous file with comments | « milo/buildsource/buildbucket/builder.go ('k') | milo/buildsource/buildbucket/html.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698