mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
rename the methods of the sessionRunner interface
This commit is contained in:
parent
759cd289c9
commit
733dcb75eb
7 changed files with 73 additions and 77 deletions
|
@ -204,7 +204,7 @@ var _ = Describe("Client", func() {
|
|||
) (quicSession, error) {
|
||||
sess := NewMockQuicSession(mockCtrl)
|
||||
sess.EXPECT().run().Do(func() { close(run) })
|
||||
runner.onHandshakeComplete(sess)
|
||||
runner.OnHandshakeComplete(sess)
|
||||
return sess, nil
|
||||
}
|
||||
s, err := Dial(
|
||||
|
@ -325,7 +325,7 @@ var _ = Describe("Client", func() {
|
|||
return sess, nil
|
||||
}
|
||||
sess.EXPECT().run().Do(func() {
|
||||
runner.retireConnectionID(connID)
|
||||
runner.Retire(connID)
|
||||
})
|
||||
|
||||
_, err := DialContext(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue