mirror of
https://github.com/vbatts/tar-split.git
synced 2024-11-15 12:58:38 +00:00
tar/asm: remove unneeded Tee
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
93666d5824
commit
2efe34695a
1 changed files with 1 additions and 5 deletions
|
@ -7,7 +7,6 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"hash/crc64"
|
"hash/crc64"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
@ -167,10 +166,7 @@ func TestTarStream(t *testing.T) {
|
||||||
|
|
||||||
// get a sum of the stream after it has passed through to ensure it's the same.
|
// get a sum of the stream after it has passed through to ensure it's the same.
|
||||||
h0 := sha1.New()
|
h0 := sha1.New()
|
||||||
tRdr0 := io.TeeReader(tarStream, h0)
|
i, err := io.Copy(h0, tarStream)
|
||||||
|
|
||||||
// read it all to the bit bucket
|
|
||||||
i, err := io.Copy(ioutil.Discard, tRdr0)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue