Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1589)

Unified Diff: appengine/tsmon/global_callback_test.go

Issue 1854583002: Migrate tsmon protos to proto3 (Closed) Base URL: git@github.com:luci/luci-go.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | appengine/tsmon/middleware.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | appengine/tsmon/middleware.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698