Ports a couple of new RPC calls to the updated codec mechanism.
This commit is contained in:
parent
e4b89bfa9f
commit
adef4894df
|
@ -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…
Reference in New Issue