run ineffassign in gometalinter

This commit is contained in:
Marten Seemann 2018-02-21 15:15:21 +08:00
parent 548916e902
commit 37aa577560
5 changed files with 6 additions and 1 deletions

View file

@ -97,7 +97,7 @@ var _ = Describe("Connection Flow controller", func() {
Expect(newlyBlocked).To(BeFalse())
controller.UpdateSendWindow(150)
controller.AddBytesSent(150)
newlyBlocked, offset = controller.IsNewlyBlocked()
newlyBlocked, _ = controller.IsNewlyBlocked()
Expect(newlyBlocked).To(BeTrue())
})
})