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
This commit is contained in:
Emil Hessman 2015-01-17 07:57:11 +01:00
parent 059866cce6
commit 73ad8fcb84

View file

@ -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)
}
}
}