diff --git a/identity-server/hosts/EntityFramework10/TestOperationalStoreNotification.cs b/identity-server/hosts/EntityFramework10/TestOperationalStoreNotification.cs index e3a80f3e0..11662adde 100644 --- a/identity-server/hosts/EntityFramework10/TestOperationalStoreNotification.cs +++ b/identity-server/hosts/EntityFramework10/TestOperationalStoreNotification.cs @@ -32,7 +32,7 @@ public class TestOperationalStoreNotification : IOperationalStoreNotification return Task.CompletedTask; } - public Task ServerSideSessionsRemovedAsync(IEnumerable userSessions, Ct ct = default) + public Task ServerSideSessionsRemovedAsync(IEnumerable userSessions, Ct ct) { ArgumentNullException.ThrowIfNull(userSessions); foreach (var session in userSessions) diff --git a/identity-server/test/IdentityServer.EndToEndTests/TestInfra/IdentityServerPageExtensions.cs b/identity-server/test/IdentityServer.EndToEndTests/TestInfra/IdentityServerPageExtensions.cs index c51165dd6..f66dd36c1 100644 --- a/identity-server/test/IdentityServer.EndToEndTests/TestInfra/IdentityServerPageExtensions.cs +++ b/identity-server/test/IdentityServer.EndToEndTests/TestInfra/IdentityServerPageExtensions.cs @@ -7,7 +7,7 @@ namespace Duende.IdentityServer.EndToEndTests.TestInfra; public static class IdentityServerPageExtensions { - public static async Task Login(this IPage page, string userName = "alice", string password = "alice", CancellationToken ct = default) + public static async Task Login(this IPage page, string userName = "alice", string password = "alice") { await page.GetLink("Secure").ClickAsync(); await page.GetByLabel("Username").FillAsync(userName);