Skip to content

Commit a163502

Browse files
committed
fix: remove unused usings
1 parent 8180248 commit a163502

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/Serilog.Enrichers.AzureClaims.Tests/Claims/ClaimEnricherTests.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
using Microsoft.AspNetCore.Http;
22
using NSubstitute;
3+
using Serilog.Core;
34
using Serilog.Enrichers.AzureClaims.Tests.Helpers;
5+
using Serilog.Enrichers.Claims;
46
using Serilog.Events;
57
using System.Security.Claims;
68
using Xunit;
7-
using Serilog.Enrichers.Claims;
8-
using Serilog.Core;
9-
using Serilog.Parsing;
109

1110
namespace Serilog.Enrichers.AzureClaims.Tests.Claims;
1211

@@ -136,8 +135,8 @@ public void Enrich_ShouldReturn_WhenHttpContextIsNull()
136135
var customClaimEnricher = new ClaimEnricher(httpContextAccessorMock, _customClaimType, _customClaimPropertyName);
137136
var logEvent = new LogEvent(
138137
DateTimeOffset.Now,
139-
LogEventLevel.Information,
140-
null,
138+
LogEventLevel.Information,
139+
null,
141140
new MessageTemplate([]), []
142141
);
143142

@@ -213,4 +212,5 @@ public void Enrich_ShouldReturn_WhenUserIsNotLoggedIn()
213212
// Assert
214213
Assert.Empty(logEvent.Properties);
215214
}
215+
216216
}

0 commit comments

Comments
 (0)