refactor(storage): ensure tests clean up

pull/14638/head
Edd Robinson 2019-08-12 13:49:52 +01:00
parent 5aead27e8b
commit 396c6b0364
1 changed files with 1 additions and 2 deletions

View File

@ -150,8 +150,7 @@ func (i *Index) Close() error {
if err := i.sfile.Close(); err != nil { if err := i.sfile.Close(); err != nil {
return err return err
} }
//return os.RemoveAll(i.rootPath) return os.RemoveAll(i.rootPath)
return nil
} }
// This benchmark compares the TagSets implementation across index types. // This benchmark compares the TagSets implementation across index types.