Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertIndie committed Jan 31, 2024
1 parent ba6c9fc commit 0bea7cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pulsar/producer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2374,10 +2374,10 @@ func TestProducerSendDuplicatedMessages(t *testing.T) {
})
assert.NoError(t, err)
for i := 0; i < 3; i++ {
var seqId int64
var seqID int64
msgID, err := testProducer.Send(context.Background(), &ProducerMessage{
Payload: make([]byte, 1024),
SequenceID: &seqId,
SequenceID: &seqID,
})
assert.NoError(t, err)
assert.NotNil(t, msgID)
Expand Down

0 comments on commit 0bea7cd

Please sign in to comment.