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

@ -24,7 +24,7 @@ var _ = Describe("File Caches", func() {
conf.Server.DataFolder, _ = os.MkdirTemp("", "file_caches")
})
AfterEach(func() {
os.RemoveAll(conf.Server.DataFolder)
_ = os.RemoveAll(conf.Server.DataFolder)
})
Describe("NewFileCache", func() {