File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/core/Akka.Persistence.TestKit.Tests Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public async Task cancelable_delay_must_call_next_interceptor_immediately_after_
73
73
74
74
var startedAt = DateTime . Now ;
75
75
var task = delay . InterceptAsync ( null ) ;
76
- await Task . Delay ( delayDuration - epsilon ) ;
76
+ await Task . Delay ( delayDuration ) ;
77
77
78
78
probe . WasCalled . Should ( ) . BeFalse ( ) ;
79
79
cts . Cancel ( ) ;
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ public async Task cancelable_delay_must_call_next_interceptor_immediately_after_
63
63
64
64
var startedAt = DateTime . Now ;
65
65
var task = delay . InterceptAsync ( null , null ) ;
66
- await Task . Delay ( delayDuration - epsilon ) ;
66
+ await Task . Delay ( delayDuration ) ;
67
67
68
68
probe . WasCalled . Should ( ) . BeFalse ( ) ;
69
69
cts . Cancel ( ) ;
You can’t perform that action at this time.
0 commit comments