| 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,
|
| },
|
|
|