| Index: logdog/appengine/coordinator/endpoints/services/registerStream_test.go
|
| diff --git a/logdog/appengine/coordinator/endpoints/services/registerStream_test.go b/logdog/appengine/coordinator/endpoints/services/registerStream_test.go
|
| index 1c1b5cef56ab8a06d94b27a85e2523c7ae748fc0..9a373c180f97c53c13dfd08f15d91dbf97a90cc2 100644
|
| --- a/logdog/appengine/coordinator/endpoints/services/registerStream_test.go
|
| +++ b/logdog/appengine/coordinator/endpoints/services/registerStream_test.go
|
| @@ -12,7 +12,6 @@ import (
|
|
|
| "github.com/luci/gae/filter/featureBreaker"
|
| ds "github.com/luci/gae/service/datastore"
|
| - "github.com/luci/luci-go/common/config"
|
| "github.com/luci/luci-go/common/proto/google"
|
| "github.com/luci/luci-go/logdog/api/config/svcconfig"
|
| "github.com/luci/luci-go/logdog/api/endpoints/coordinator/services/v1"
|
| @@ -21,6 +20,7 @@ import (
|
| ct "github.com/luci/luci-go/logdog/appengine/coordinator/coordinatorTest"
|
| "github.com/luci/luci-go/logdog/appengine/coordinator/hierarchy"
|
| "github.com/luci/luci-go/logdog/common/types"
|
| + "github.com/luci/luci-go/luci_config/common/cfgtypes"
|
| "golang.org/x/net/context"
|
|
|
| . "github.com/luci/luci-go/common/testing/assertions"
|
| @@ -323,7 +323,7 @@ func BenchmarkRegisterStream(b *testing.B) {
|
|
|
| const (
|
| prefix = types.StreamName("testing")
|
| - project = config.ProjectName("proj-foo")
|
| + project = cfgtypes.ProjectName("proj-foo")
|
| )
|
|
|
| tls := ct.MakeStream(c, project, prefix.Join(types.StreamName(fmt.Sprintf("foo/bar"))))
|
|
|