From 531447a21f248b625a2681b91fc408a3cc39653e Mon Sep 17 00:00:00 2001 From: ta264 Date: Thu, 11 Jul 2019 22:21:20 +0100 Subject: [PATCH] Fixed: Relax flakey cache test --- src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs b/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs index 80acddea8..cee6436fb 100644 --- a/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs +++ b/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs @@ -122,7 +122,7 @@ namespace NzbDrone.Common.Test.CacheTests Thread.Sleep(1000); - hitCount.Should().BeInRange(3, 6); + hitCount.Should().BeInRange(3, 7); _cachedString.Values.Should().HaveCount(0); } }