fix: update quartz auth tests to match new two-arg signWithAllLoggedInUsers

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013hTFpoExYYLYEGGtXBx6ZT
This commit is contained in:
Claude
2026-06-27 22:58:51 +00:00
parent 0e6e7901c2
commit d57c3f71db
2 changed files with 3 additions and 3 deletions
@@ -90,7 +90,7 @@ class RelayAuthenticatorConcurrencyTest {
val authenticator =
RelayAuthenticator(
client = client,
signWithAllLoggedInUsers = { emptyList() },
signWithAllLoggedInUsers = { _, _ -> emptyList() },
)
val listener =
client.captured
@@ -102,7 +102,7 @@ class RelayAuthenticatorTimeoutTest {
RelayAuthenticator(
client = client,
scope = scope,
signWithAllLoggedInUsers = {
signWithAllLoggedInUsers = { _, _ ->
throw SignerExceptions.TimedOutException("User didn't accept or reject in time.")
},
)
@@ -130,7 +130,7 @@ class RelayAuthenticatorTimeoutTest {
RelayAuthenticator(
client = client,
scope = scope,
signWithAllLoggedInUsers = { template ->
signWithAllLoggedInUsers = { _, _ ->
listOf(RelayAuthEvent.create(relay.url, "challenge-123", signer))
},
)