From 2df46131ebe48f54ebc479355042e247d4ea6e9f Mon Sep 17 00:00:00 2001 From: Asim Date: Mon, 7 Nov 2016 18:54:44 +0000 Subject: [PATCH] fix test --- client/rpc_client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/rpc_client_test.go b/client/rpc_client_test.go index d2c3fb62..396a673a 100644 --- a/client/rpc_client_test.go +++ b/client/rpc_client_test.go @@ -21,7 +21,7 @@ func TestCallWrapper(t *testing.T) { address := "10.1.10.1:8080" wrap := func(cf CallFunc) CallFunc { - return func(ctx context.Context, addr string, req Request, rsp interface{}, opts ...CallOptions) error { + return func(ctx context.Context, addr string, req Request, rsp interface{}, opts CallOptions) error { called = true if req.Service() != service {