brontide,lnwire,wtwire,zpay32: use CamelCase

Rename fuzz test functions to use CamelCase.
This commit is contained in:
Matt Morehouse
2022-11-07 14:58:46 -06:00
parent c77852a68c
commit 5a48568806
4 changed files with 85 additions and 85 deletions

View File

@@ -11,7 +11,7 @@ import (
"github.com/btcsuite/btcd/chaincfg/chainhash"
)
func Fuzz_decode(f *testing.F) {
func FuzzDecode(f *testing.F) {
f.Fuzz(func(t *testing.T, data string) {
inv, err := Decode(data, &chaincfg.TestNet3Params)
if err != nil {
@@ -25,7 +25,7 @@ func Fuzz_decode(f *testing.F) {
})
}
func Fuzz_encode(f *testing.F) {
func FuzzEncode(f *testing.F) {
f.Fuzz(func(t *testing.T, data string) {
inv, err := Decode(data, &chaincfg.TestNet3Params)
if err != nil {