| Index: logdog/common/storage/memory/memory_test.go
|
| diff --git a/logdog/common/storage/memory/memory_test.go b/logdog/common/storage/memory/memory_test.go
|
| index 40c746f04102bb40a191b73cb5f4b77182e6f56a..660c8af2dd96f9d7dd644cf8df724b600ee823cc 100644
|
| --- a/logdog/common/storage/memory/memory_test.go
|
| +++ b/logdog/common/storage/memory/memory_test.go
|
| @@ -11,9 +11,9 @@ import (
|
| "testing"
|
| "time"
|
|
|
| - "github.com/luci/luci-go/common/config"
|
| "github.com/luci/luci-go/logdog/common/storage"
|
| "github.com/luci/luci-go/logdog/common/types"
|
| + "github.com/luci/luci-go/luci_config/common/cfgtypes"
|
|
|
| . "github.com/luci/luci-go/common/testing/assertions"
|
| . "github.com/smartystreets/goconvey/convey"
|
| @@ -52,7 +52,7 @@ func TestBigTable(t *testing.T) {
|
| st := Storage{}
|
| defer st.Close()
|
|
|
| - project := config.ProjectName("test-project")
|
| + project := cfgtypes.ProjectName("test-project")
|
| path := types.StreamPath("testing/+/foo/bar")
|
|
|
| Convey(`Can Put() log stream records {0..5, 7, 8, 10}.`, func() {
|
|
|