mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
stop the timer when the session's run loop returns
This commit is contained in:
parent
6d66eac1b9
commit
1db3f06e87
3 changed files with 13 additions and 0 deletions
|
@ -77,4 +77,11 @@ var _ = Describe("Timer", func() {
|
|||
Eventually(t.Chan()).Should(Receive())
|
||||
Consistently(t.Chan()).ShouldNot(Receive())
|
||||
})
|
||||
|
||||
It("stops", func() {
|
||||
t := NewTimer()
|
||||
t.Reset(time.Now().Add(50 * time.Millisecond))
|
||||
t.Stop()
|
||||
Consistently(t.Chan()).ShouldNot(Receive())
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue