You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/08/14 03:55:08 UTC

[dubbo-go-samples] branch 3.0 updated: remove files (#196)

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

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


The following commit(s) were added to refs/heads/3.0 by this push:
     new 2898f66  remove files (#196)
2898f66 is described below

commit 2898f66fb6c1230ecccce7418c999d7f69b82c85
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