| Index: appengine/tsmon/global_callback_test.go
|
| diff --git a/appengine/tsmon/global_callback_test.go b/appengine/tsmon/global_callback_test.go
|
| index e8f2a350c6f59cd9b44e3fa70fca02ac54ada883..ad30f431a99becc0241e148a6267c4890d98da5a 100644
|
| --- a/appengine/tsmon/global_callback_test.go
|
| +++ b/appengine/tsmon/global_callback_test.go
|
| @@ -10,7 +10,6 @@ import (
|
| "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"
|
| @@ -52,7 +51,7 @@ func TestGlobalCallbacks(t *testing.T) {
|
|
|
| Convey("Global callbacks", t, func() {
|
| c, clock := buildGAETestContext()
|
| - s := store.NewInMemory(&target.Task{ServiceName: proto.String("default target")})
|
| + s := store.NewInMemory(&target.Task{ServiceName: "default target"})
|
| mon := &monitor.Fake{}
|
| state := tsmon.GetState(c)
|
| state.S = s
|
|
|