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