From f23c2dbaba100bf05de47db667b76e94e84ef3a9 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 3 Nov 2024 14:46:31 -0800 Subject: [PATCH] Increase retries for DebouncerFixture (cherry picked from commit 78cf13d341e6690bf6079dd1819d060d002155a7) --- src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs b/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs index 4b7349f4a..47bc3ca42 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; @@ -21,7 +21,7 @@ namespace NzbDrone.Common.Test.TPLTests } [Test] - [Retry(3)] + [Retry(10)] public void should_hold_the_call_for_debounce_duration() { var counter = new Counter(); @@ -39,7 +39,7 @@ namespace NzbDrone.Common.Test.TPLTests } [Test] - [Retry(3)] + [Retry(10)] public void should_throttle_calls() { var counter = new Counter(); @@ -63,7 +63,7 @@ namespace NzbDrone.Common.Test.TPLTests } [Test] - [Retry(3)] + [Retry(10)] public void should_hold_the_call_while_paused() { var counter = new Counter(); @@ -97,7 +97,7 @@ namespace NzbDrone.Common.Test.TPLTests } [Test] - [Retry(3)] + [Retry(10)] public void should_handle_pause_reentrancy() { var counter = new Counter();