From 63da7dbb596159309b434c10cea5e322eef2a9cc Mon Sep 17 00:00:00 2001 From: Saxon Date: Tue, 23 Apr 2019 14:45:16 +0930 Subject: [PATCH] protocol/rtcp: removed unecessary logging in test files --- protocol/rtcp/rtcp_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/protocol/rtcp/rtcp_test.go b/protocol/rtcp/rtcp_test.go index 0fe446ba..9d109ebe 100644 --- a/protocol/rtcp/rtcp_test.go +++ b/protocol/rtcp/rtcp_test.go @@ -70,8 +70,6 @@ func TestReceiverReportBytes(t *testing.T) { } got := report.Bytes(nil) - t.Logf("Got: %v\n", got) - t.Logf("Want: %v\n", expect) if !bytes.Equal(got, expect) { t.Errorf("did not get expected result. \nGot: %v\nWant: %v\n", got, expect) } @@ -108,8 +106,6 @@ func TestSourceDescriptionBytes(t *testing.T) { }, } got := description.Bytes(nil) - t.Logf("Got: %v\n", got) - t.Logf("Expect: %v\n", expect) if !bytes.Equal(got, expect) { t.Errorf("Did not get expected result.\nGot: %v\n Want: %v\n", got, expect) }