| Index: milo/appengine/buildbot/pubsub_test.go
|
| diff --git a/milo/appengine/buildbot/pubsub_test.go b/milo/appengine/buildbot/pubsub_test.go
|
| index 40e64de740abe2e7ba065e06b445207d8dd994e8..486b414642c85d0725e6a1b681ad29c981aac646 100644
|
| --- a/milo/appengine/buildbot/pubsub_test.go
|
| +++ b/milo/appengine/buildbot/pubsub_test.go
|
| @@ -20,12 +20,12 @@ import (
|
| "github.com/luci/gae/impl/memory"
|
| ds "github.com/luci/gae/service/datastore"
|
| "github.com/luci/luci-go/common/clock/testclock"
|
| - lucicfg "github.com/luci/luci-go/common/config"
|
| memcfg "github.com/luci/luci-go/common/config/impl/memory"
|
| "github.com/luci/luci-go/common/logging/gologger"
|
| "github.com/luci/luci-go/milo/appengine/settings"
|
| "github.com/luci/luci-go/server/auth"
|
| "github.com/luci/luci-go/server/auth/authtest"
|
| + "github.com/luci/luci-go/server/config/testconfig"
|
| "github.com/luci/luci-go/server/router"
|
|
|
| "github.com/julienschmidt/httprouter"
|
| @@ -432,7 +432,8 @@ func TestPubSub(t *testing.T) {
|
| })
|
| So(h.Code, ShouldEqual, 200)
|
| Convey("And stores correctly", func() {
|
| - c = lucicfg.SetImplementation(c, memcfg.New(aclConfgs))
|
| + c = testconfig.WithCommonClient(c, memcfg.New(aclConfgs))
|
| +
|
| err := settings.Update(c)
|
| So(err, ShouldBeNil)
|
| c = auth.WithState(c, &authtest.FakeState{
|
|
|