Skip to content

Commit

Permalink
fix: remove unused usings
Browse files Browse the repository at this point in the history
  • Loading branch information
loekensgard committed Nov 22, 2024
1 parent 8180248 commit a163502
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using Microsoft.AspNetCore.Http;
using NSubstitute;
using Serilog.Core;
using Serilog.Enrichers.AzureClaims.Tests.Helpers;
using Serilog.Enrichers.Claims;
using Serilog.Events;
using System.Security.Claims;
using Xunit;
using Serilog.Enrichers.Claims;
using Serilog.Core;
using Serilog.Parsing;

namespace Serilog.Enrichers.AzureClaims.Tests.Claims;

Expand Down Expand Up @@ -136,8 +135,8 @@ public void Enrich_ShouldReturn_WhenHttpContextIsNull()
var customClaimEnricher = new ClaimEnricher(httpContextAccessorMock, _customClaimType, _customClaimPropertyName);
var logEvent = new LogEvent(
DateTimeOffset.Now,
LogEventLevel.Information,
null,
LogEventLevel.Information,
null,
new MessageTemplate([]), []
);

Expand Down Expand Up @@ -213,4 +212,5 @@ public void Enrich_ShouldReturn_WhenUserIsNotLoggedIn()
// Assert
Assert.Empty(logEvent.Properties);
}

}

0 comments on commit a163502

Please sign in to comment.