diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2024-06-08 20:36:04 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2024-06-09 14:05:15 -0700 |
| commit | b129b7cbc9fd9a9c11a77e5922861ef08893efa1 (patch) | |
| tree | 1e3687d1c96fb54bcac1d9c13cdac4297976a758 /hotline/transaction_handlers_test.go | |
| parent | 9c44621ee1ca9abfca79c593e80193afd9204c83 (diff) | |
Convert bespoke methods to io.Reader/io.Writer interfaces
Diffstat (limited to 'hotline/transaction_handlers_test.go')
| -rw-r--r-- | hotline/transaction_handlers_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hotline/transaction_handlers_test.go b/hotline/transaction_handlers_test.go index b03e3b1..94854f2 100644 --- a/hotline/transaction_handlers_test.go +++ b/hotline/transaction_handlers_test.go @@ -5,6 +5,7 @@ import ( "fmt" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" + "io" "io/fs" "math/rand" "os" @@ -2859,7 +2860,7 @@ func TestHandleGetFileNameList(t *testing.T) { }, name: []byte("testfile-1k"), } - b, _ := fnwi.MarshalBinary() + b, _ := io.ReadAll(&fnwi) return b }(), ), |