From 6278673b4667d93bd60e4c4e0c08699f854a7b2d Mon Sep 17 00:00:00 2001 From: David Zhao Date: Wed, 9 Jun 2021 13:17:13 -0700 Subject: [PATCH] Fix test --- pkg/rtc/participant_internal_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/rtc/participant_internal_test.go b/pkg/rtc/participant_internal_test.go index 4c2221b9f..de14fa3c3 100644 --- a/pkg/rtc/participant_internal_test.go +++ b/pkg/rtc/participant_internal_test.go @@ -148,7 +148,7 @@ func newParticipantForTest(identity string) *ParticipantImpl { // disable mux, it doesn't play too well with unit test conf.RTC.UDPPort = 0 conf.RTC.TCPPort = 0 - rtcConf, err := NewWebRTCConfig(&conf.RTC, "") + rtcConf, err := NewWebRTCConfig(conf, "") if err != nil { panic(err) }