Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
  • Loading branch information
mxpv committed Feb 2, 2024
1 parent dea99e9 commit 6615f15
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions integration/streaming_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,11 +196,7 @@ func (tss *testStreamingService) EmptyPayloadStream(_ context.Context, _ *emptyp
return err
}

if err := streamer.Send(&streaming.EchoPayload{Seq: 2}); err != nil {
return err
}

return nil
return streamer.Send(&streaming.EchoPayload{Seq: 2})
}

func TestStreamingService(t *testing.T) {
Expand Down

0 comments on commit 6615f15

Please sign in to comment.