diff options
Diffstat (limited to 'rpc/json_test.go')
-rw-r--r-- | rpc/json_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/json_test.go b/rpc/json_test.go index b095996b8..5048d2f7a 100644 --- a/rpc/json_test.go +++ b/rpc/json_test.go @@ -75,7 +75,7 @@ func TestJSONRequestParsing(t *testing.T) { t.Fatalf("%v", e) } if id != 1234 { - t.Fatalf("Expected id 1234 but got %s", id) + t.Fatalf("Expected id 1234 but got %d", id) } } else { t.Fatalf("invalid request, expected *json.RawMesage got %T", requests[0].id) |