Skip to content

Instantly share code, notes, and snippets.

@Sean-Der
Created January 5, 2021 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sean-Der/285839e21df22de2362ca6958eaa5d88 to your computer and use it in GitHub Desktop.
Save Sean-Der/285839e21df22de2362ca6958eaa5d88 to your computer and use it in GitHub Desktop.
diff --git a/go.mod b/go.mod
index c9f03e1..be25e8c 100644
--- a/go.mod
+++ b/go.mod
@@ -2,6 +2,8 @@ module github.com/pion/webrtc/v3
go 1.12
+replace github.com/pion/interceptor => /home/sean/go/src/github.com/pion/interceptor
+
require (
github.com/onsi/ginkgo v1.14.2 // indirect
github.com/onsi/gomega v1.10.3 // indirect
diff --git a/peerconnection_media_test.go b/peerconnection_media_test.go
index 3c66a91..243c569 100644
--- a/peerconnection_media_test.go
+++ b/peerconnection_media_test.go
@@ -52,12 +52,6 @@ func TestPeerConnection_Media_Sample(t *testing.T) {
expectedStreamID = "pion"
)
- lim := test.TimeOut(time.Second * 30)
- defer lim.Stop()
-
- report := test.CheckRoutines(t)
- defer report()
-
pcOffer, pcAnswer, err := newPair()
if err != nil {
t.Fatal(err)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment