Merge pull request #7 from mindlesslcc/fix_rpc_return_value

This commit is contained in:
siddontang 2017-04-11 09:19:25 +08:00 committed by GitHub
commit 6463c39726
1 changed files with 3 additions and 1 deletions

View File

@ -79,7 +79,9 @@ func TestRpc2(t *testing.T) {
c := newTestClient()
var r func(ids []int) ([]int, error)
c.MakeRpc("rpc2", &r)
if err := c.MakeRpc("rpc2", &r); err != nil {
t.Fatal(err)
}
a, e := r(nil)
if e == nil {