File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
TimeoutMigrationTool.ASQ.IntegrationTests
TimeoutMigrationTool.Tests Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -391,7 +391,6 @@ public async Task Staging_with_large_entities_batches_respecting_size_limitation
391
391
var stageResult = await result . StageBatch ( timeouts , 1 ) ;
392
392
393
393
// Assert
394
- Assert . That ( stageResult , Is . Not . Null ) ;
395
394
Assert . That ( stageResult , Is . EqualTo ( timeouts . Count ) ) ;
396
395
}
397
396
@@ -436,7 +435,6 @@ public async Task Completing_with_large_entities_batches_respecting_size_limitat
436
435
var completeResult = await result . CompleteBatch ( 1 ) ;
437
436
438
437
// Assert
439
- Assert . That ( completeResult , Is . Not . Null ) ;
440
438
Assert . That ( completeResult , Is . EqualTo ( timeouts . Count ) ) ;
441
439
}
442
440
Original file line number Diff line number Diff line change @@ -32,6 +32,9 @@ public void Setup()
32
32
timeoutsSource . SetupEndpoints ( endpoints ) ;
33
33
}
34
34
35
+ [ TearDown ]
36
+ public async Task TearDown ( ) => await timeoutsTarget . DisposeAsync ( ) ;
37
+
35
38
[ Test ]
36
39
public void WhenAbortingAndTimeoutStorageFoundNothingToAbortThrowsException ( )
37
40
{
Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ public void Setup()
31
31
timeoutsSource . SetupEndpoints ( endpoints ) ;
32
32
}
33
33
34
+ [ TearDown ]
35
+ public async Task TearDown ( ) => await timeoutsTarget . DisposeAsync ( ) ;
36
+
34
37
[ Test ]
35
38
public async Task WhenRunningWithoutToolState ( )
36
39
{
You can’t perform that action at this time.
0 commit comments