1
0
mirror of https://github.com/golang/go synced 2024-09-24 15:20:16 -06:00

archive/tar: (test) structure comparison not reflect.DeepEqual

R=dsymonds
CC=golang-dev
https://golang.org/cl/5487064
This commit is contained in:
Christopher Wedgwood 2011-12-14 08:08:49 +11:00 committed by David Symonds
parent dd8dc6f059
commit 0e9ee93cea

View File

@ -10,7 +10,6 @@ import (
"fmt"
"io"
"os"
"reflect"
"testing"
"time"
)
@ -127,7 +126,7 @@ testLoop:
f.Close()
continue testLoop
}
if !reflect.DeepEqual(hdr, header) {
if *hdr != *header {
t.Errorf("test %d, entry %d: Incorrect header:\nhave %+v\nwant %+v",
i, j, *hdr, *header)
}
@ -201,7 +200,7 @@ func TestIncrementalRead(t *testing.T) {
}
// check the header
if !reflect.DeepEqual(hdr, headers[nread]) {
if *hdr != *headers[nread] {
t.Errorf("Incorrect header:\nhave %+v\nwant %+v",
*hdr, headers[nread])
}