Skip to content
Snippets Groups Projects
Commit 03b1a0d1 authored by Serene Han's avatar Serene Han Committed by Arlo Breault
Browse files

remove dead code

parent 1d1882b5
No related branches found
No related tags found
No related merge requests found
......@@ -95,15 +95,11 @@ func TestConnect(t *testing.T) {
c.config = webrtc.NewConfiguration()
c.preparePeerConnection()
// offer := webrtc.DeserializeSessionDescription(
// `{"type":"offer","sdp":"test offer"}`)
// c.pc.SetLocalDescription(offer)
c.offerChannel <- nil
answer := webrtc.DeserializeSessionDescription(
`{"type":"answer","sdp":""}`)
c.answerChannel <- answer
c.exchangeSDP()
// So(c.pc.RemoteDescription(), ShouldEqual, answer)
})
SkipConvey("Exchange SDP fails on nil answer", func() {
......
......@@ -20,7 +20,6 @@ type BrokerChannel struct {
// different from the host name in URL).
Host string
url *url.URL
// transport http.Transport // Used to make all requests.
transport http.RoundTripper // Used to make all requests.
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment