mirror of https://github.com/restic/restic.git
cache: Fix file descriptor leak in TestBackendRemoveBroken
This commit is contained in:
parent
9ec7eee803
commit
430ab32941
|
@ -199,6 +199,9 @@ func TestBackendRemoveBroken(t *testing.T) {
|
|||
|
||||
// check that the cache now contains the correct data
|
||||
rd, err := c.load(h, 0, 0)
|
||||
defer func() {
|
||||
_ = rd.Close()
|
||||
}()
|
||||
test.OK(t, err)
|
||||
cached, err := ioutil.ReadAll(rd)
|
||||
test.OK(t, err)
|
||||
|
|
Loading…
Reference in New Issue