mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-23 02:05:27 +02:00
Increase retries for DebouncerFixture
This commit is contained in:
parent
978349e241
commit
78cf13d341
@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Threading;
|
||||
using FluentAssertions;
|
||||
using NUnit.Framework;
|
||||
@ -20,7 +20,7 @@ public void Hit()
|
||||
}
|
||||
|
||||
[Test]
|
||||
[Retry(3)]
|
||||
[Retry(10)]
|
||||
public void should_hold_the_call_for_debounce_duration()
|
||||
{
|
||||
var counter = new Counter();
|
||||
@ -38,7 +38,7 @@ public void should_hold_the_call_for_debounce_duration()
|
||||
}
|
||||
|
||||
[Test]
|
||||
[Retry(3)]
|
||||
[Retry(10)]
|
||||
public void should_throttle_calls()
|
||||
{
|
||||
var counter = new Counter();
|
||||
@ -62,7 +62,7 @@ public void should_throttle_calls()
|
||||
}
|
||||
|
||||
[Test]
|
||||
[Retry(3)]
|
||||
[Retry(10)]
|
||||
public void should_hold_the_call_while_paused()
|
||||
{
|
||||
var counter = new Counter();
|
||||
@ -96,7 +96,7 @@ public void should_hold_the_call_while_paused()
|
||||
}
|
||||
|
||||
[Test]
|
||||
[Retry(3)]
|
||||
[Retry(10)]
|
||||
public void should_handle_pause_reentrancy()
|
||||
{
|
||||
var counter = new Counter();
|
||||
|
Loading…
Reference in New Issue
Block a user