| Index: appengine/tsmon/global_callback_test.go
|
| diff --git a/appengine/tsmon/global_callback_test.go b/appengine/tsmon/global_callback_test.go
|
| index ad30f431a99becc0241e148a6267c4890d98da5a..e8f2a350c6f59cd9b44e3fa70fca02ac54ada883 100644
|
| --- a/appengine/tsmon/global_callback_test.go
|
| +++ b/appengine/tsmon/global_callback_test.go
|
| @@ -10,6 +10,7 @@
|
| "testing"
|
| "time"
|
|
|
| + "github.com/golang/protobuf/proto"
|
| "github.com/julienschmidt/httprouter"
|
| "github.com/luci/gae/service/datastore"
|
| "github.com/luci/luci-go/common/clock/testclock"
|
| @@ -51,7 +52,7 @@
|
|
|
| Convey("Global callbacks", t, func() {
|
| c, clock := buildGAETestContext()
|
| - s := store.NewInMemory(&target.Task{ServiceName: "default target"})
|
| + s := store.NewInMemory(&target.Task{ServiceName: proto.String("default target")})
|
| mon := &monitor.Fake{}
|
| state := tsmon.GetState(c)
|
| state.S = s
|
|
|