more audit work

This commit is contained in:
master
2026-01-08 10:21:51 +02:00
parent 43c02081ef
commit 51cf4bc16c
546 changed files with 36721 additions and 4003 deletions

View File

@@ -15,6 +15,7 @@ namespace StellaOps.Scanner.Reachability.Tests;
public class IacBoundaryExtractorTests
{
private readonly IacBoundaryExtractor _extractor;
private static CancellationToken TestCancellationToken => TestContext.Current.CancellationToken;
public IacBoundaryExtractorTests()
{
@@ -930,7 +931,7 @@ public class IacBoundaryExtractorTests
};
var syncResult = _extractor.Extract(root, null, context);
var asyncResult = await _extractor.ExtractAsync(root, null, context);
var asyncResult = await _extractor.ExtractAsync(root, null, context, TestCancellationToken);
Assert.NotNull(syncResult);
Assert.NotNull(asyncResult);