From 0e9ee93cea231186c565ab10e3e5f3161cd4c769 Mon Sep 17 00:00:00 2001 From: Christopher Wedgwood Date: Wed, 14 Dec 2011 08:08:49 +1100 Subject: [PATCH] archive/tar: (test) structure comparison not reflect.DeepEqual R=dsymonds CC=golang-dev https://golang.org/cl/5487064 --- src/pkg/archive/tar/reader_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pkg/archive/tar/reader_test.go b/src/pkg/archive/tar/reader_test.go index 5829d03faa..0a6513d0ca 100644 --- a/src/pkg/archive/tar/reader_test.go +++ b/src/pkg/archive/tar/reader_test.go @@ -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]) } -- 2.50.0