File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -519,6 +519,8 @@ public class TimingFixture
519
519
public static readonly TimeSpan TimingInterval = TimeSpan . FromMilliseconds ( 300 ) ;
520
520
public static readonly TimeSpan TimingInterval_2X = TimeSpan . FromMilliseconds ( 600 ) ;
521
521
public static readonly TimeSpan TimingInterval_4X = TimeSpan . FromMilliseconds ( 1200 ) ;
522
+ public static readonly TimeSpan TimingInterval_8X = TimeSpan . FromMilliseconds ( 2400 ) ;
523
+ public static readonly TimeSpan TimingInterval_16X = TimeSpan . FromMilliseconds ( 4800 ) ;
522
524
public static readonly TimeSpan SafetyMargin = TimeSpan . FromMilliseconds ( 150 ) ;
523
525
public static readonly TimeSpan TestTimeout = TimeSpan . FromSeconds ( 5 ) ;
524
526
}
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ public void TestBackgroundUpdateSucceedsWithInfiniteTimeoutTimeSpan()
140
140
public void TestBackgroundUpdateFails ( )
141
141
{
142
142
var k = new BlockingCell < int > ( ) ;
143
- SetAfter ( TimingInterval_4X , k , 123 ) ;
143
+ SetAfter ( TimingInterval_16X , k , 123 ) ;
144
144
145
145
ResetTimer ( ) ;
146
146
Assert . Throws < TimeoutException > ( ( ) => k . WaitForValue ( TimingInterval ) ) ;
You can’t perform that action at this time.
0 commit comments