From 2fe06869ec07c96f37df1b0ab994756384bb7da7 Mon Sep 17 00:00:00 2001 From: alex289 Date: Wed, 15 Nov 2023 09:25:20 +0100 Subject: [PATCH] feat: Remove deprecated system clock --- .../Infrastructure/Auth/TestAuthenticationHandler.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CleanArchitecture.IntegrationTests/Infrastructure/Auth/TestAuthenticationHandler.cs b/CleanArchitecture.IntegrationTests/Infrastructure/Auth/TestAuthenticationHandler.cs index db98295..57f7faa 100644 --- a/CleanArchitecture.IntegrationTests/Infrastructure/Auth/TestAuthenticationHandler.cs +++ b/CleanArchitecture.IntegrationTests/Infrastructure/Auth/TestAuthenticationHandler.cs @@ -12,8 +12,7 @@ public sealed class TestAuthenticationHandler : AuthenticationHandler options, ILoggerFactory logger, - UrlEncoder encoder, - ISystemClock clock) : base(options, logger, encoder, clock) + UrlEncoder encoder) : base(options, logger, encoder) { }