diff --git a/http_test.go b/http_test.go index f5346f4..edf2b23 100644 --- a/http_test.go +++ b/http_test.go @@ -7,12 +7,12 @@ import ( "testing" "github.com/micro/go-micro/registry" - "github.com/micro/go-micro/registry/mock" + "github.com/micro/go-micro/registry/memory" "github.com/micro/go-micro/server" ) func TestHTTPServer(t *testing.T) { - reg := mock.NewRegistry() + reg := memory.NewRegistry() // create server srv := NewServer(server.Registry(reg))