diff options
| author | 2026-03-06 16:46:51 +0800 | |
|---|---|---|
| committer | 2026-03-06 16:46:51 +0800 | |
| commit | 9e44418ce9d88f4159067b1ce2c808cb93e29c38 (patch) | |
| tree | 4ff99e20df4ec1c6ddb8508202fcb28aa42551eb /format/sideband64k/helpers_test.go | |
| parent | format/sideband64k: Add side-band-64k (diff) | |
| signature | No signature | |
format/sideband64k: Lint
Diffstat (limited to 'format/sideband64k/helpers_test.go')
| -rw-r--r-- | format/sideband64k/helpers_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/format/sideband64k/helpers_test.go b/format/sideband64k/helpers_test.go index c10e9e71..f9b2608f 100644 --- a/format/sideband64k/helpers_test.go +++ b/format/sideband64k/helpers_test.go @@ -26,6 +26,7 @@ func (w *limitWriter) Write(p []byte) (int, error) { func (w *limitWriter) Flush() error { w.flushes++ + return nil } @@ -40,5 +41,6 @@ func (r *byteReader) Read(p []byte) (int, error) { p[0] = r.data[0] r.data = r.data[1:] + return 1, nil } |
