protocol/rtcp: removed unecessary logging in test files

This commit is contained in:
Saxon 2019-04-23 14:45:16 +09:30
parent 017abea667
commit 63da7dbb59
1 changed files with 0 additions and 4 deletions

View File

@ -70,8 +70,6 @@ func TestReceiverReportBytes(t *testing.T) {
} }
got := report.Bytes(nil) got := report.Bytes(nil)
t.Logf("Got: %v\n", got)
t.Logf("Want: %v\n", expect)
if !bytes.Equal(got, expect) { if !bytes.Equal(got, expect) {
t.Errorf("did not get expected result. \nGot: %v\nWant: %v\n", 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) got := description.Bytes(nil)
t.Logf("Got: %v\n", got)
t.Logf("Expect: %v\n", expect)
if !bytes.Equal(got, expect) { if !bytes.Equal(got, expect) {
t.Errorf("Did not get expected result.\nGot: %v\n Want: %v\n", got, expect) t.Errorf("Did not get expected result.\nGot: %v\n Want: %v\n", got, expect)
} }