Skip to content
Snippets Groups Projects
Commit 6f9aceec authored by wongoo's avatar wongoo
Browse files

fix issue #71

parent 2b5f5e48
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ module github.com/apache/dubbo-go
require (
github.com/dubbogo/getty v1.0.7
github.com/dubbogo/hessian2 v1.0.1
github.com/dubbogo/hessian2 v1.0.2
github.com/pkg/errors v0.8.1
github.com/samuel/go-zookeeper v0.0.0-20180130194729-c4fab1ac1bec
github.com/stretchr/testify v1.3.0
......
......@@ -91,7 +91,7 @@ func TestClient_Call(t *testing.T) {
user = &User{}
err = c.Call("127.0.0.1:20000", url, "GetUser1", []interface{}{"1", "username"}, user)
assert.EqualError(t, err, "got exception: error")
assert.EqualError(t, err, "error")
user2 := []interface{}{}
err = c.Call("127.0.0.1:20000", url, "GetUser2", []interface{}{"1", "username"}, &user2)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment