1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-31 03:22:03 +00:00

Increase retries for DebouncerFixture

This commit is contained in:
Mark McDowall 2024-11-03 14:46:31 -08:00 committed by Mark McDowall
parent 978349e241
commit 78cf13d341

View file

@ -1,4 +1,4 @@
using System; using System;
using System.Threading; using System.Threading;
using FluentAssertions; using FluentAssertions;
using NUnit.Framework; using NUnit.Framework;
@ -20,7 +20,7 @@ namespace NzbDrone.Common.Test.TPLTests
} }
[Test] [Test]
[Retry(3)] [Retry(10)]
public void should_hold_the_call_for_debounce_duration() public void should_hold_the_call_for_debounce_duration()
{ {
var counter = new Counter(); var counter = new Counter();
@ -38,7 +38,7 @@ namespace NzbDrone.Common.Test.TPLTests
} }
[Test] [Test]
[Retry(3)] [Retry(10)]
public void should_throttle_calls() public void should_throttle_calls()
{ {
var counter = new Counter(); var counter = new Counter();
@ -62,7 +62,7 @@ namespace NzbDrone.Common.Test.TPLTests
} }
[Test] [Test]
[Retry(3)] [Retry(10)]
public void should_hold_the_call_while_paused() public void should_hold_the_call_while_paused()
{ {
var counter = new Counter(); var counter = new Counter();
@ -96,7 +96,7 @@ namespace NzbDrone.Common.Test.TPLTests
} }
[Test] [Test]
[Retry(3)] [Retry(10)]
public void should_handle_pause_reentrancy() public void should_handle_pause_reentrancy()
{ {
var counter = new Counter(); var counter = new Counter();