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

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

Issue 2748073006: Milo Refactor: Remove theme support (Closed)
Patch Set: Fix builder.html pointer Created 3 years, 9 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
Index: milo/appengine/buildbucket/builder_test.go
diff --git a/milo/appengine/buildbucket/builder_test.go b/milo/appengine/buildbucket/builder_test.go
index 518144486fa1cd6ffb5b99c395daf12dc32c3fae..411541a51da144d60f7082bb06faea25477ab46a 100644
--- a/milo/appengine/buildbucket/builder_test.go
+++ b/milo/appengine/buildbucket/builder_test.go
@@ -41,7 +41,13 @@ func TestBuilder(t *testing.T) {
err := os.MkdirAll(filepath.Dir(expectationFilePath), 0777)
So(err, ShouldBeNil)
- actual, err := builderImpl(c, "debug", tc.bucket, tc.builder, 0)
+ actual, err := builderImpl(c,
+ builderQuery{
+ Server: "debug",
+ Bucket: tc.bucket,
+ Builder: tc.builder,
+ Limit: 0,
+ })
So(err, ShouldBeNil)
actualJSON, err := json.MarshalIndent(actual, "", " ")
So(err, ShouldBeNil)

Powered by Google App Engine
This is Rietveld 408576698