| Index: milo/appengine/buildbot/buildinfo_test.go
|
| diff --git a/milo/appengine/buildbot/buildinfo_test.go b/milo/appengine/buildbot/buildinfo_test.go
|
| index 10dfb484061b8a02e68999d5fae54f3641cc3f0b..cf1320673519403942e30f616bac0533f16dc3c8 100644
|
| --- a/milo/appengine/buildbot/buildinfo_test.go
|
| +++ b/milo/appengine/buildbot/buildinfo_test.go
|
| @@ -134,6 +134,16 @@ func TestBuildInfo(t *testing.T) {
|
| },
|
| }
|
|
|
| + Convey("Load an invalid build", func() {
|
| + _, err := bip.GetBuildInfo(c,
|
| + &milo.BuildInfoRequest_BuildBot{
|
| + MasterName: "foo master",
|
| + BuilderName: "bar builder",
|
| + BuildNumber: 1334,
|
| + }, "")
|
| + So(err.Error(), ShouldResemble, "rpc error: code = Unauthenticated desc = ")
|
| + })
|
| +
|
| Convey("Can load a BuildBot build by log location.", func() {
|
| build.Properties = append(build.Properties, []*buildbotProperty{
|
| {Name: "log_location", Value: "logdog://example.com/testproject/foo/bar/+/baz/annotations"},
|
|
|