summaryrefslogtreecommitdiffstats
path: root/cache/filecache/integration_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'cache/filecache/integration_test.go')
-rw-r--r--cache/filecache/integration_test.go9
1 files changed, 2 insertions, 7 deletions
diff --git a/cache/filecache/integration_test.go b/cache/filecache/integration_test.go
index eaddf9da6..26653fc35 100644
--- a/cache/filecache/integration_test.go
+++ b/cache/filecache/integration_test.go
@@ -15,7 +15,6 @@ package filecache_test
import (
"path/filepath"
- "runtime"
"testing"
"time"
@@ -90,12 +89,8 @@ iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNkYPhfDwAChwGA60e6kgAA
b.Assert(b.GCCount, qt.Equals, 1)
// Build it again to GC the empty a dir.
b.Build()
- if runtime.GOOS != "windows" {
- // See issue #58860 -- this sometimes fails on Windows,
- // but the empty directory will be removed on the next run.
- _, err = b.H.BaseFs.ResourcesCache.Stat(filepath.Join(imagesCacheDir, "a"))
- b.Assert(err, qt.Not(qt.IsNil))
- }
+ _, err = b.H.BaseFs.ResourcesCache.Stat(filepath.Join(imagesCacheDir, "a"))
+ b.Assert(err, qt.Not(qt.IsNil))
_, err = b.H.BaseFs.ResourcesCache.Stat(imagesCacheDir)
b.Assert(err, qt.IsNil)