diff --git a/vfs/cache_test.go b/vfs/cache_test.go index bda264ab4..5b8fd1f0f 100644 --- a/vfs/cache_test.go +++ b/vfs/cache_test.go @@ -63,9 +63,9 @@ func TestCacheNew(t *testing.T) { defer r.Finalise() ctx, cancel := context.WithCancel(context.Background()) - defer cancel() c, err := newCache(ctx, r.Fremote, &DefaultOpt) + cancel() // kill the background cache cleaning as it interferes with the tests require.NoError(t, err) assert.Contains(t, c.root, "vfs")