From 01b4b35505fb5d21c7715ac7b0e016aba1f4c3ab Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Mon, 14 Jan 2019 15:30:33 +0000 Subject: [PATCH] rename mock to memory registry --- http_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))