forked from TrueCloudLab/restic
backend/tests: Drain reader before returning error
This commit is contained in:
parent
fe99340e40
commit
4dc0f24b38
1 changed files with 4 additions and 0 deletions
|
@ -147,6 +147,10 @@ func (s *Suite) TestLoad(t *testing.T) {
|
|||
}
|
||||
|
||||
err = b.Load(context.TODO(), handle, 0, 0, func(rd io.Reader) error {
|
||||
_, err := io.Copy(ioutil.Discard, rd)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
return errors.Errorf("deliberate error")
|
||||
})
|
||||
if err == nil {
|
||||
|
|
Loading…
Reference in a new issue