mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
simplify the Tracer interface by combining the TracerFor... methods
This commit is contained in:
parent
ece3592544
commit
ee24d3899e
32 changed files with 139 additions and 194 deletions
|
@ -68,7 +68,7 @@ var _ = Describe("Client", func() {
|
|||
originalClientSessConstructor = newClientSession
|
||||
tracer = mocks.NewMockConnectionTracer(mockCtrl)
|
||||
tr := mocks.NewMockTracer(mockCtrl)
|
||||
tr.EXPECT().TracerForClient(gomock.Any()).Return(tracer).MaxTimes(1)
|
||||
tr.EXPECT().TracerForConnection(protocol.PerspectiveClient, gomock.Any()).Return(tracer).MaxTimes(1)
|
||||
config = &Config{Tracer: tr}
|
||||
Eventually(areSessionsRunning).Should(BeFalse())
|
||||
// sess = NewMockQuicSession(mockCtrl)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue