From 73ad8fcb841afc1848cd61441dda7ef7036322a1 Mon Sep 17 00:00:00 2001 From: Emil Hessman Date: Sat, 17 Jan 2015 07:57:11 +0100 Subject: [PATCH] command: address vet report in test Fixes the following vet report: command/rpc_test.go:61: missing argument for Fatalf(%s): format reads arg 3, have only 2 args --- command/rpc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/rpc_test.go b/command/rpc_test.go index 3b5d64c16..194c06b63 100644 --- a/command/rpc_test.go +++ b/command/rpc_test.go @@ -58,7 +58,7 @@ func TestAddrFlag_default(t *testing.T) { res := getParsedAddr(t, a, "", "") if res != def { - t.Fatalf("Expected %s addr: %s, got: %s", def, res) + t.Fatalf("Expected addr: %s, got: %s", def, res) } } }