diff --git a/v2/btcjson/help_test.go b/v2/btcjson/help_test.go index 505fb05084..a58f06e948 100644 --- a/v2/btcjson/help_test.go +++ b/v2/btcjson/help_test.go @@ -320,7 +320,7 @@ func TestResultStructHelp(t *testing.T) { name: "struct with primitive field and json tag", reflectType: func() reflect.Type { type s struct { - field int `json:"f"` + Field int `json:"f"` } return reflect.TypeOf(s{}) }(),