Fix test condition
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2022-03-01 23:55:06 +01:00
parent 385e440775
commit fcac047a8d

View file

@ -343,7 +343,7 @@ func TestPacketizeFLAC(t *testing.T) {
if packetCount != 4231 {
t.Errorf("Wrong Packet Count %d != %d", packetCount, 4231)
}
if packetBytes != 51515502 {
if packetBytes != 51513533 {
t.Errorf("Wrong Packet Bytes %d != %d", packetBytes, 51513533)
}
if bytes.Compare(shaHasher.Sum([]byte{}), shaPacketHasher.Sum([]byte{})) != 0 {