mirror of
https://github.com/rclone/rclone.git
synced 2025-02-14 21:23:01 +02:00
vfs: vfscache make TestCacheCleaner test more reliable
This commit is contained in:
parent
530dc77cde
commit
939860eb85
@ -565,9 +565,14 @@ func TestCacheCleaner(t *testing.T) {
|
||||
assert.Equal(t, fmt.Sprintf("%p", potato), fmt.Sprintf("%p", potato2))
|
||||
assert.True(t, found)
|
||||
|
||||
time.Sleep(10 * opt.CachePollInterval)
|
||||
for i := 0; i < 100; i++ {
|
||||
time.Sleep(10 * opt.CachePollInterval)
|
||||
potato2, found = c.get("potato")
|
||||
if !found {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
potato2, found = c.get("potato")
|
||||
assert.NotEqual(t, fmt.Sprintf("%p", potato), fmt.Sprintf("%p", potato2))
|
||||
assert.False(t, found)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user