Update CI configs to v0.7.2

Update lint scripts and CI configs.
This commit is contained in:
Pion
2022-04-24 02:56:44 +00:00
committed by Sean DuBois
parent 9b523704bb
commit 16e03db8f8
16 changed files with 132 additions and 67 deletions

View File

@@ -234,7 +234,7 @@ func TestVNetGatherWithNAT1To1(t *testing.T) {
laddr := [2]*net.UDPAddr{nil, nil}
for i, candi := range candidates {
laddr[i] = candi.(*CandidateHost).conn.LocalAddr().(*net.UDPAddr)
laddr[i] = candi.(*CandidateHost).conn.LocalAddr().(*net.UDPAddr) //nolint:forcetypeassert
if candi.Port() != laddr[i].Port {
t.Fatalf("Unexpected candidate port: %d", candi.Port())
}