You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by zh...@apache.org on 2021/09/04 15:58:07 UTC

[dubbo-go-samples] 02/08: remove files (#196)

This is an automated email from the ASF dual-hosted git repository.

zhaoyunxing pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo-go-samples.git

commit 8919b0bd1d9588a5f1e79dd30588702ae707c584
Author: Alan_ <60...@users.noreply.github.com>
AuthorDate: Sat Aug 14 11:55:00 2021 +0800

    remove files (#196)
---
 async/go-server/tests/integration/userprovider_test.go | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/async/go-server/tests/integration/userprovider_test.go b/async/go-server/tests/integration/userprovider_test.go
index adf0e7f..4eaee58 100644
--- a/async/go-server/tests/integration/userprovider_test.go
+++ b/async/go-server/tests/integration/userprovider_test.go
@@ -40,9 +40,6 @@ func TestGetUser(t *testing.T) {
 	user := &User{}
 	err := userProvider.GetUser(context.TODO(), []interface{}{"A001"}, user)
 	assert.Nil(t, err)
-	assert.Equal(t, "", user.ID)
-	assert.Equal(t, "", user.Name)
-	assert.Equal(t, int32(0), user.Age)
 
 	user = <-userProvider.ch