expose the constructor for the multipexed connection tracer

This commit is contained in:
Marten Seemann 2021-02-09 10:54:51 +08:00
parent 622ca23d4e
commit 0d38dce8cd
2 changed files with 5 additions and 4 deletions

View file

@ -94,7 +94,7 @@ var _ = Describe("Tracing", func() {
BeforeEach(func() {
tr1 = NewMockConnectionTracer(mockCtrl)
tr2 = NewMockConnectionTracer(mockCtrl)
tracer = newConnectionMultiplexer(tr1, tr2)
tracer = NewMultiplexedConnectionTracer(tr1, tr2)
})
It("trace the ConnectionStarted event", func() {