| Index: common/tsmon/metric/metric_test.go
|
| diff --git a/common/tsmon/metric/metric_test.go b/common/tsmon/metric/metric_test.go
|
| index b25f7bebfc22800bb8b73be876961eb44c0d647e..07d5c87d4e9aad815beec39c6f674c5594e1f725 100644
|
| --- a/common/tsmon/metric/metric_test.go
|
| +++ b/common/tsmon/metric/metric_test.go
|
| @@ -7,7 +7,6 @@ package metric
|
| import (
|
| "testing"
|
|
|
| - "github.com/golang/protobuf/proto"
|
| "github.com/luci/luci-go/common/tsmon"
|
| "github.com/luci/luci-go/common/tsmon/distribution"
|
| "github.com/luci/luci-go/common/tsmon/monitor"
|
| @@ -21,7 +20,7 @@ import (
|
|
|
| func makeContext() context.Context {
|
| return tsmon.WithState(context.Background(), &tsmon.State{
|
| - S: store.NewInMemory(&target.Task{ServiceName: proto.String("default target")}),
|
| + S: store.NewInMemory(&target.Task{ServiceName: "default target"}),
|
| M: monitor.NewNilMonitor(),
|
| RegisteredMetrics: map[string]types.Metric{},
|
| })
|
|
|