fix bug in tests

main
Motiejus Jakštys 2021-05-24 00:11:57 +03:00
parent 9e1d2601ac
commit c8907a411e
1 changed files with 2 additions and 1 deletions

View File

@ -74,7 +74,7 @@ func (tb tarball) bytes(t *testing.T) []byte {
func extract(t *testing.T, tarball io.Reader) []file {
t.Helper()
var ret []file
ret := []file{}
tr := tar.NewReader(tarball)
for {
hdr, err := tr.Next()
@ -89,6 +89,7 @@ func extract(t *testing.T, tarball io.Reader) []file {
io.Copy(&buf, tr)
elem.contents = buf.Bytes()
}
ret = append(ret, elem)
}
return ret
}