Skip to content

Commit b546625

Browse files
committed
Fix the fix to the lint issue
1 parent 487bcee commit b546625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/framework/events/events_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ func TestEventLoop_SwapBatches(t *testing.T) {
3131
g.Expect(eventLoop.currentBatch).To(HaveLen(len(nextBatch)))
3232
g.Expect(eventLoop.currentBatch).To(Equal(nextBatch))
3333
g.Expect(eventLoop.nextBatch).To(BeEmpty())
34-
g.Expect(cap(eventLoop.nextBatch)).To(HaveCap(3))
34+
g.Expect(eventLoop.nextBatch).To(HaveCap(3))
3535
}

0 commit comments

Comments
 (0)