diff --git a/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs b/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs index c8844b2f3..d61381f13 100644 --- a/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs +++ b/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Threading; using FluentAssertions; using NUnit.Framework; @@ -20,7 +20,7 @@ namespace NzbDrone.Common.Test.TPLTests } [Test] - [Retry(3)] + [Retry(10)] public void should_hold_the_call_for_debounce_duration() { var counter = new Counter(); @@ -38,7 +38,7 @@ namespace NzbDrone.Common.Test.TPLTests } [Test] - [Retry(3)] + [Retry(10)] public void should_throttle_calls() { var counter = new Counter(); @@ -62,7 +62,7 @@ namespace NzbDrone.Common.Test.TPLTests } [Test] - [Retry(3)] + [Retry(10)] public void should_hold_the_call_while_paused() { var counter = new Counter(); @@ -96,7 +96,7 @@ namespace NzbDrone.Common.Test.TPLTests } [Test] - [Retry(3)] + [Retry(10)] public void should_handle_pause_reentrancy() { var counter = new Counter();