Commit 232cd84c authored by Stan Hu's avatar Stan Hu

Revise error statement to reflect reality

parent 0ef15b36
...@@ -87,7 +87,7 @@ func testHandlePostRpc(t *testing.T, action string) { ...@@ -87,7 +87,7 @@ func testHandlePostRpc(t *testing.T, action string) {
} }
if rr.Body.String() != string(testInput) { if rr.Body.String() != string(testInput) {
t.Errorf("handler did not echo back properly: got %d, expected %d bytes", t.Errorf("handler did not receive expected data: got %d, expected %d bytes",
len(rr.Body.String()), len(testInput)) len(rr.Body.String()), len(testInput))
} }
} }
......
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