diff --git a/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs b/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs index 54b2a0e01..d6d34e18a 100644 --- a/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs +++ b/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs @@ -84,6 +84,7 @@ namespace NzbDrone.Common.Test.CacheTests } [Test] + [Platform(Exclude = "MacOsX")] public void should_honor_ttl() { int hitCount = 0; @@ -92,10 +93,10 @@ namespace NzbDrone.Common.Test.CacheTests for (int i = 0; i < 10; i++) { _cachedString.Get("key", () => - { - hitCount++; - return null; - }, TimeSpan.FromMilliseconds(300)); + { + hitCount++; + return null; + }, TimeSpan.FromMilliseconds(300)); Thread.Sleep(100); } diff --git a/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs b/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs index 29e7bb7ec..05a7621a4 100644 --- a/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs +++ b/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs @@ -7,6 +7,7 @@ using NzbDrone.Common.TPL; namespace NzbDrone.Common.Test.TPLTests { [TestFixture] + [Platform(Exclude = "MacOsX")] public class DebouncerFixture { public class Counter diff --git a/src/NzbDrone.Common.Test/TPLTests/RateLimitServiceFixture.cs b/src/NzbDrone.Common.Test/TPLTests/RateLimitServiceFixture.cs index e5ccc8244..539e3a62a 100644 --- a/src/NzbDrone.Common.Test/TPLTests/RateLimitServiceFixture.cs +++ b/src/NzbDrone.Common.Test/TPLTests/RateLimitServiceFixture.cs @@ -10,6 +10,7 @@ using FluentAssertions; namespace NzbDrone.Common.Test.TPLTests { [TestFixture] + [Platform(Exclude = "MacOsX")] public class RateLimitServiceFixture : TestBase { private DateTime _epoch;