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

Unified Diff: milo/appengine/buildbot/html_data.go

Issue 2364653002: Buildbot build json grpc endpoint (Closed)
Patch Set: Pass tests Created 4 years, 3 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/appengine/buildbot/html.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/buildbot/html_data.go
diff --git a/milo/appengine/buildbot/html_data.go b/milo/appengine/buildbot/html_data.go
index abe5582b9914f1ff94bc123bcbcb03fd4642e40c..17752be28c1fb4f5ed66cf12cf3e4ecb75b5e2ab 100644
--- a/milo/appengine/buildbot/html_data.go
+++ b/milo/appengine/buildbot/html_data.go
@@ -18,10 +18,10 @@ import (
// We put this here because _test.go files are sometimes not built.
var testCases = []struct {
builder string
- build string
+ build int
}{
- {"CrWinGoma", "30608"},
- {"win_chromium_rel_ng", "246309"},
+ {"CrWinGoma", 30608},
+ {"win_chromium_rel_ng", 246309},
}
// TestableBuild is a subclass of Build that interfaces with TestableHandler and
@@ -45,7 +45,7 @@ func (b Build) TestData() []settings.TestBundle {
tc.builder, tc.build, err))
}
bundles = append(bundles, settings.TestBundle{
- Description: fmt.Sprintf("Debug page: %s/%s", tc.builder, tc.build),
+ Description: fmt.Sprintf("Debug page: %s/%d", tc.builder, tc.build),
Data: templates.Args{
"Build": build,
},
« no previous file with comments | « milo/appengine/buildbot/html.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698