diff --git a/stream/forwarding/forwarding_test.go b/stream/forwarding/forwarding_test.go index 5a88a21..401954f 100644 --- a/stream/forwarding/forwarding_test.go +++ b/stream/forwarding/forwarding_test.go @@ -59,7 +59,7 @@ func TestForwardStream(t *testing.T) { New(forwardingList, forwardingChannel) // Serve HTTP Server - go srt.Serve(&srt.Options{ListenAddress: ":9711", MaxClients: 2}, forwardingChannel) + go srt.Serve(&srt.Options{ListenAddress: ":9712", MaxClients: 2}, forwardingChannel) ffmpeg := exec.Command("ffmpeg", "-i", "http://ftp.crans.org/events/Blender%20OpenMovies/big_buck_bunny_480p_stereo.ogg", @@ -96,4 +96,5 @@ func TestForwardStream(t *testing.T) { } // TODO Check that the stream ran + // TODO Kill SRT server } diff --git a/stream/srt/srt_test.go b/stream/srt/srt_test.go index 68fafcf..d6c480a 100644 --- a/stream/srt/srt_test.go +++ b/stream/srt/srt_test.go @@ -69,4 +69,5 @@ func TestServeSRT(t *testing.T) { time.Sleep(5000000000) // Delay is in nanoseconds, here 5s // TODO Check that the stream ran + // TODO Kill SRT server }