Skip to content

Commit 5a963e0

Browse files
committed
chore: fix unused-receiver linter warning in eventstream test
1 parent 634e23c commit 5a963e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

intercept/eventstream/eventstream_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (f *clockAdvancingFlusher) Flush() {
5858
}
5959

6060
// Hijack satisfies the FullResponseWriter lint rule.
61-
func (f *clockAdvancingFlusher) Hijack() (net.Conn, *bufio.ReadWriter, error) {
61+
func (*clockAdvancingFlusher) Hijack() (net.Conn, *bufio.ReadWriter, error) {
6262
return nil, nil, nil
6363
}
6464

0 commit comments

Comments
 (0)