From 24877a4714b22d028592928dac0d744e827db044 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Sun, 24 May 2020 06:59:47 -0700 Subject: [PATCH] Fix broken link to issue in comment Link incorrectly include /v2 to github repo --- peerconnection_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peerconnection_test.go b/peerconnection_test.go index bfad2630..4352357a 100644 --- a/peerconnection_test.go +++ b/peerconnection_test.go @@ -245,7 +245,7 @@ func TestPeerConnection_GetConfiguration(t *testing.T) { assert.Equal(t, expected.BundlePolicy, actual.BundlePolicy) assert.Equal(t, expected.RTCPMuxPolicy, actual.RTCPMuxPolicy) // TODO(albrow): Uncomment this after #513 is fixed. - // See: https://github.com/pion/webrtc/v2/issues/513. + // See: https://github.com/pion/webrtc/issues/513. // assert.Equal(t, len(expected.Certificates), len(actual.Certificates)) assert.Equal(t, expected.ICECandidatePoolSize, actual.ICECandidatePoolSize) }