| Index: milo/appengine/buildbot/build_test.go
|
| diff --git a/milo/appengine/buildbot/build_test.go b/milo/appengine/buildbot/build_test.go
|
| index b5db334148d20599bc07f2119a21dbb3a17347c9..4cb85ac3282219a23b86c4c8feb1813aba5048da 100644
|
| --- a/milo/appengine/buildbot/build_test.go
|
| +++ b/milo/appengine/buildbot/build_test.go
|
| @@ -45,7 +45,7 @@ func shouldMatchExpectationsFor(actualContents interface{}, expectedFilename ...
|
| }
|
|
|
| func TestBuild(t *testing.T) {
|
| - c := memory.Use(context.Background())
|
| + c := memory.UseWithAppID(context.Background(), "dev~luci-milo")
|
| c, _ = testclock.UseTime(c, testclock.TestTimeUTC)
|
|
|
| if *generate {
|
| @@ -99,12 +99,13 @@ func TestBuild(t *testing.T) {
|
| }
|
|
|
| var internalConfig = `
|
| -name: "buildbot-internal"
|
| -access: "group:googlers"
|
| +buildbot: {
|
| + internal_reader: "googlers"
|
| +}
|
| `
|
|
|
| var bbAclConfigs = map[string]memcfg.ConfigSet{
|
| - "projects/chrome": {
|
| - "project.cfg": internalConfig,
|
| + "services/luci-milo": {
|
| + "settings.cfg": internalConfig,
|
| },
|
| }
|
|
|