| Index: milo/appengine/buildbot/build_test.go
|
| diff --git a/milo/appengine/buildbot/build_test.go b/milo/appengine/buildbot/build_test.go
|
| index cf750d03cb4c56b784dd8d6341eeb9637c21d906..3dc90f58236fd33d9c9aec2b702374fe9572892f 100644
|
| --- a/milo/appengine/buildbot/build_test.go
|
| +++ b/milo/appengine/buildbot/build_test.go
|
| @@ -71,7 +71,7 @@ func TestBuild(t *testing.T) {
|
| Convey(fmt.Sprintf("Test Case: %s/%s", tc.builder, tc.build), func() {
|
| build, err := build(c, "debug", tc.builder, tc.build)
|
| So(err, ShouldBeNil)
|
| - fname := fmt.Sprintf("%s.%s.build.json", tc.builder, tc.build)
|
| + fname := fmt.Sprintf("%s.%d.build.json", tc.builder, tc.build)
|
| So(build, shouldMatchExpectationsFor, fname)
|
| })
|
| }
|
| @@ -83,7 +83,7 @@ func TestBuild(t *testing.T) {
|
| Number: 1,
|
| Internal: true,
|
| })
|
| - b, err := getBuild(c, "fake", "fake", "1")
|
| + b, err := getBuild(c, "fake", "fake", 1)
|
| So(b, ShouldBeNil)
|
| So(err, ShouldResemble, miloerror.Error{
|
| Message: "Cannot fetch project buildbot-internal:\ndatastore: no such entity",
|
|
|