fix tests. new product advisories enhancements

This commit is contained in:
master
2026-01-25 19:11:36 +02:00
parent c70e83719e
commit 6e687b523a
504 changed files with 40610 additions and 3785 deletions

View File

@@ -15,13 +15,13 @@ namespace StellaOps.ReachGraph.WebService.Tests;
/// Integration tests for the ReachGraph Store API.
/// Uses in-memory providers for quick testing without containers.
/// </summary>
public class ReachGraphApiIntegrationTests : IClassFixture<WebApplicationFactory<Program>>
public class ReachGraphApiIntegrationTests : IClassFixture<ReachGraphTestFactory>
{
private readonly HttpClient _client;
private const string TenantHeader = "X-Tenant-ID";
private const string TestTenant = "test-tenant";
public ReachGraphApiIntegrationTests(WebApplicationFactory<Program> factory)
public ReachGraphApiIntegrationTests(ReachGraphTestFactory factory)
{
_client = factory.CreateClient();
_client.DefaultRequestHeaders.Add(TenantHeader, TestTenant);