fix to gccgo compilation error
Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>
This commit is contained in:
parent
39a74950fe
commit
958e93287e
1 changed files with 1 additions and 2 deletions
|
@ -43,10 +43,9 @@ func TestReaderErrWrapperReadOnError(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestReaderErrWrapperRead(t *testing.T) {
|
func TestReaderErrWrapperRead(t *testing.T) {
|
||||||
called := false
|
|
||||||
reader := strings.NewReader("a string reader.")
|
reader := strings.NewReader("a string reader.")
|
||||||
wrapper := NewReaderErrWrapper(reader, func() {
|
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)
|
// Read 20 byte (should be ok with the string above)
|
||||||
num, err := wrapper.Read(make([]byte, 20))
|
num, err := wrapper.Read(make([]byte, 20))
|
||||||
|
|
Loading…
Reference in a new issue