mirror of https://bitbucket.org/ausocean/av.git
protocol/rtcp: removed unecessary logging in test files
This commit is contained in:
parent
017abea667
commit
63da7dbb59
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue