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

@@ -137,7 +137,7 @@ public class CompositeFeatureFlagServiceTests : IDisposable
UserId: "user-123",
TenantId: "tenant-456",
Environment: "production",
Attributes: new Dictionary<string, object?> { { "role", "admin" } });
Attributes: new Dictionary<string, object> { { "role", "admin" } });
FeatureFlagEvaluationContext? capturedContext = null;
_primaryProvider

View File

@@ -58,7 +58,7 @@ public class FeatureFlagModelsTests
public void FeatureFlagEvaluationContext_CanBeCreatedWithAllValues()
{
// Arrange
var attributes = new Dictionary<string, object?>
var attributes = new Dictionary<string, object>
{
{ "role", "admin" },
{ "subscription", "premium" }