fixed stream-writer's test bug

This commit is contained in:
M. Sz 2021-02-01 20:56:23 +01:00
parent 84c87b2eb8
commit 2ebb36eba8
1 changed files with 2 additions and 4 deletions

View File

@ -8,14 +8,12 @@ func TestStreamWriterByte(t *testing.T) {
sr := CreateStreamWriter()
data := []byte{0x12, 0x34, 0x56, 0x78}
for _, d := range data {
sr.PushByte(d)
}
sr.PushBytes(data...)
output := sr.GetBytes()
for i, d := range data {
if output[i] != d {
t.Fatalf("sr.PushByte() pushed %X, but wrote %X instead", d, output[i])
t.Fatalf("sr.PushBytes() pushed %X, but wrote %X instead", d, output[i])
}
}
}