Skip to content

Commit

Permalink
Mod: gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexStocks committed Jul 11, 2019
1 parent b7d21c5 commit b4735e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocol/dubbo/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func TestClient_Call(t *testing.T) {
//assert.NotEqual(t, "", user.Id)
//assert.NotEqual(t, "", user.Name)

user := &User{}
user := &User{}
err := c.Call("127.0.0.1:20000", url, "GetUser", []interface{}{"1", "username"}, user)
assert.NoError(t, err)
assert.Equal(t, User{Id: "1", Name: "username"}, *user)
Expand Down

0 comments on commit b4735e3

Please sign in to comment.