Commit 66331532 authored by Russ Cox's avatar Russ Cox

net/rpc/jsonrpc: fix test error message

Fixes #4041.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/6495121
parent d09afc2e
...@@ -131,7 +131,7 @@ func TestClient(t *testing.T) { ...@@ -131,7 +131,7 @@ func TestClient(t *testing.T) {
t.Errorf("Add: expected no error but got string %q", err.Error()) t.Errorf("Add: expected no error but got string %q", err.Error())
} }
if reply.C != args.A+args.B { if reply.C != args.A+args.B {
t.Errorf("Add: expected %d got %d", reply.C, args.A+args.B) t.Errorf("Add: got %d expected %d", reply.C, args.A+args.B)
} }
args = &Args{7, 8} args = &Args{7, 8}
...@@ -141,7 +141,7 @@ func TestClient(t *testing.T) { ...@@ -141,7 +141,7 @@ func TestClient(t *testing.T) {
t.Errorf("Mul: expected no error but got string %q", err.Error()) t.Errorf("Mul: expected no error but got string %q", err.Error())
} }
if reply.C != args.A*args.B { if reply.C != args.A*args.B {
t.Errorf("Mul: expected %d got %d", reply.C, args.A*args.B) t.Errorf("Mul: got %d expected %d", reply.C, args.A*args.B)
} }
// Out of order. // Out of order.
...@@ -156,7 +156,7 @@ func TestClient(t *testing.T) { ...@@ -156,7 +156,7 @@ func TestClient(t *testing.T) {
t.Errorf("Add: expected no error but got string %q", addCall.Error.Error()) t.Errorf("Add: expected no error but got string %q", addCall.Error.Error())
} }
if addReply.C != args.A+args.B { if addReply.C != args.A+args.B {
t.Errorf("Add: expected %d got %d", addReply.C, args.A+args.B) t.Errorf("Add: got %d expected %d", addReply.C, args.A+args.B)
} }
mulCall = <-mulCall.Done mulCall = <-mulCall.Done
...@@ -164,7 +164,7 @@ func TestClient(t *testing.T) { ...@@ -164,7 +164,7 @@ func TestClient(t *testing.T) {
t.Errorf("Mul: expected no error but got string %q", mulCall.Error.Error()) t.Errorf("Mul: expected no error but got string %q", mulCall.Error.Error())
} }
if mulReply.C != args.A*args.B { if mulReply.C != args.A*args.B {
t.Errorf("Mul: expected %d got %d", mulReply.C, args.A*args.B) t.Errorf("Mul: got %d expected %d", mulReply.C, args.A*args.B)
} }
// Error test // Error test
......
Markdown is supported
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