Merge remaining changes

This commit is contained in:
StellaOps Bot
2026-01-08 08:55:04 +02:00
parent 7bd3ecff45
commit 56d77a9f84

View File

@@ -42,8 +42,8 @@ public sealed class AdvisoryLinksetCacheRepositoryTests : IAsyncLifetime
var results = await _repository.FindByTenantAsync(
"TENANT-A",
Array.Empty<string>(),
Array.Empty<string>(),
null,
null,
cursor: null,
limit: 10,
TestContext.Current.CancellationToken);
@@ -73,8 +73,8 @@ public sealed class AdvisoryLinksetCacheRepositoryTests : IAsyncLifetime
var firstPage = await _repository.FindByTenantAsync(
"tenant",
Array.Empty<string>(),
Array.Empty<string>(),
null,
null,
cursor: null,
limit: 10,
TestContext.Current.CancellationToken);
@@ -83,8 +83,8 @@ public sealed class AdvisoryLinksetCacheRepositoryTests : IAsyncLifetime
var cursor = new AdvisoryLinksetCursor(firstPage[1].CreatedAt, firstPage[1].AdvisoryId);
var secondPage = await _repository.FindByTenantAsync(
"tenant",
Array.Empty<string>(),
Array.Empty<string>(),
null,
null,
cursor,
limit: 10,
TestContext.Current.CancellationToken);
@@ -136,7 +136,7 @@ public sealed class AdvisoryLinksetCacheRepositoryTests : IAsyncLifetime
var results = await _repository.FindByTenantAsync(
"tenant-x",
new[] { "GHSA-9999" },
Array.Empty<string>(),
null,
cursor: null,
limit: 1,
TestContext.Current.CancellationToken);