mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 22:06:20 +00:00
Ports a couple of new RPC calls to the updated codec mechanism.
This commit is contained in:
parent
2c36c4f969
commit
8d444f2eed
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user