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
519519 public static readonly TimeSpan TimingInterval = TimeSpan . FromMilliseconds ( 300 ) ;
520520 public static readonly TimeSpan TimingInterval_2X = TimeSpan . FromMilliseconds ( 600 ) ;
521521 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 ) ;
522524 public static readonly TimeSpan SafetyMargin = TimeSpan . FromMilliseconds ( 150 ) ;
523525 public static readonly TimeSpan TestTimeout = TimeSpan . FromSeconds ( 5 ) ;
524526 }
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ public void TestBackgroundUpdateSucceedsWithInfiniteTimeoutTimeSpan()
140140 public void TestBackgroundUpdateFails ( )
141141 {
142142 var k = new BlockingCell < int > ( ) ;
143- SetAfter ( TimingInterval_4X , k , 123 ) ;
143+ SetAfter ( TimingInterval_16X , k , 123 ) ;
144144
145145 ResetTimer ( ) ;
146146 Assert . Throws < TimeoutException > ( ( ) => k . WaitForValue ( TimingInterval ) ) ;
You can’t perform that action at this time.
0 commit comments