Remove temp folders after tests

This commit is contained in:
Deluan 2021-10-28 10:40:31 -04:00
parent fa3471f527
commit 66a9cbb7d9
6 changed files with 30 additions and 15 deletions

View file

@ -19,9 +19,8 @@ var _ = Describe("Spread FS", func() {
fs, err = NewSpreadFS(rootDir, 0755)
Expect(err).To(BeNil())
})
AfterEach(func() {
Expect(os.RemoveAll(rootDir)).To(BeNil())
_ = os.RemoveAll(rootDir)
})
Describe("KeyMapper", func() {