diff --git a/consul/kvs_endpoint_test.go b/consul/kvs_endpoint_test.go index bdc43f1c9e..0ebec469b9 100644 --- a/consul/kvs_endpoint_test.go +++ b/consul/kvs_endpoint_test.go @@ -281,7 +281,7 @@ func TestKVSEndpoint_List(t *testing.T) { // Try listing a nonexistent prefix getR.Key = "/nope" - if err := client.Call("KVS.List", &getR, &dirent); err != nil { + if err := msgpackrpc.CallWithCodec(codec, "KVS.List", &getR, &dirent); err != nil { t.Fatalf("err: %v", err) } if dirent.Index == 0 { @@ -529,7 +529,7 @@ func TestKVSEndpoint_ListKeys(t *testing.T) { // Try listing a nonexistent prefix getR.Prefix = "/nope" - if err := client.Call("KVS.ListKeys", &getR, &dirent); err != nil { + if err := msgpackrpc.CallWithCodec(codec, "KVS.ListKeys", &getR, &dirent); err != nil { t.Fatalf("err: %v", err) } if dirent.Index == 0 {