From ae50c05610f1155a8a8b606a5124855f9b111e22 Mon Sep 17 00:00:00 2001 From: Joe Zou <yixian.zou@gmail.com> Date: Tue, 3 Dec 2019 10:41:13 +0800 Subject: [PATCH] fix case --- protocol/dubbo/dubbo_invoker_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/protocol/dubbo/dubbo_invoker_test.go b/protocol/dubbo/dubbo_invoker_test.go index 0a765356f..d2553884d 100644 --- a/protocol/dubbo/dubbo_invoker_test.go +++ b/protocol/dubbo/dubbo_invoker_test.go @@ -21,6 +21,8 @@ import ( "sync" "testing" "time" + + "github.com/apache/dubbo-go/common" ) import ( @@ -65,7 +67,7 @@ func TestDubboInvoker_Invoke(t *testing.T) { // AsyncCall lock := sync.Mutex{} lock.Lock() - inv.SetCallBack(func(response CallResponse) { + inv.SetCallBack(func(response common.CallResponse) { assert.Equal(t, User{Id: "1", Name: "username"}, *response.Reply.(*Response).reply.(*User)) lock.Unlock() }) -- GitLab