File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -423,6 +423,7 @@ public class TimingFixture
423
423
{
424
424
public static readonly TimeSpan TimingInterval = TimeSpan . FromMilliseconds ( 300 ) ;
425
425
public static readonly TimeSpan TimingInterval_2X = TimeSpan . FromMilliseconds ( 600 ) ;
426
+ public static readonly TimeSpan TimingInterval_4X = TimeSpan . FromMilliseconds ( 1200 ) ;
426
427
public static readonly TimeSpan SafetyMargin = TimeSpan . FromMilliseconds ( 150 ) ;
427
428
public static readonly TimeSpan TestTimeout = TimeSpan . FromSeconds ( 5 ) ;
428
429
}
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ public void TestBackgroundUpdateSucceedsWithInfiniteTimeoutTimeSpan()
164
164
public void TestBackgroundUpdateFails ( )
165
165
{
166
166
var k = new BlockingCell < int > ( ) ;
167
- SetAfter ( TimingInterval_2X , k , 123 ) ;
167
+ SetAfter ( TimingInterval_4X , k , 123 ) ;
168
168
169
169
ResetTimer ( ) ;
170
170
Assert . Throws < TimeoutException > ( ( ) => k . WaitForValue ( TimingInterval ) ) ;
You can’t perform that action at this time.
0 commit comments