From c69131b98c0fd869b54d2a7244de0dda1031e41f Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sun, 19 Jul 2020 15:54:33 +0100 Subject: [PATCH] fix grpc test --- grpc_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/grpc_test.go b/grpc_test.go index 2a74f97..d0b0aab 100644 --- a/grpc_test.go +++ b/grpc_test.go @@ -10,6 +10,7 @@ import ( "github.com/micro/go-micro/v2/client" gcli "github.com/micro/go-micro/v2/client/grpc" "github.com/micro/go-micro/v2/errors" + pberr "github.com/micro/go-micro/v2/errors/proto" rmemory "github.com/micro/go-micro/v2/registry/memory" "github.com/micro/go-micro/v2/router" "github.com/micro/go-micro/v2/server" @@ -201,7 +202,7 @@ func TestGRPCServer(t *testing.T) { if !ok { t.Fatalf("invalid error received %#+v\n", err) } - verr, ok := st.Details()[0].(*errors.Error) + verr, ok := st.Details()[0].(*pberr.Error) if !ok { t.Fatalf("invalid error received %#+v\n", st.Details()[0]) }