From 958e93287ec90d7ae9b13c5502c3917f00796da0 Mon Sep 17 00:00:00 2001 From: vagrant Date: Thu, 14 May 2015 13:58:00 +0000 Subject: [PATCH] fix to gccgo compilation error Signed-off-by: Srini Brahmaroutu --- ioutils/readers_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ioutils/readers_test.go b/ioutils/readers_test.go index b4cbfd9..d220487 100644 --- a/ioutils/readers_test.go +++ b/ioutils/readers_test.go @@ -43,10 +43,9 @@ func TestReaderErrWrapperReadOnError(t *testing.T) { } func TestReaderErrWrapperRead(t *testing.T) { - called := false reader := strings.NewReader("a string reader.") wrapper := NewReaderErrWrapper(reader, func() { - called = true // Should not be called + t.Fatalf("readErrWrapper should not have called the anonymous function on failure") }) // Read 20 byte (should be ok with the string above) num, err := wrapper.Read(make([]byte, 20))