rename the methods of the sessionRunner interface

This commit is contained in:
Marten Seemann 2019-03-05 13:48:01 +09:00
parent 759cd289c9
commit 733dcb75eb
7 changed files with 73 additions and 77 deletions

View file

@ -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(