From 36f28f82c2e58bd2a74fe10d182e4432a20f77b1 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Thu, 5 Oct 2023 18:00:03 +0200 Subject: [PATCH] router: fix a test in the url builder because a field changed name --- crates/router/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/router/src/lib.rs b/crates/router/src/lib.rs index f928a207..4cfdd93c 100644 --- a/crates/router/src/lib.rs +++ b/crates/router/src/lib.rs @@ -44,7 +44,7 @@ mod tests { assert_eq!(Index.relative_url(), Cow::Borrowed("/")); assert_eq!( Login::and_continue_grant(Ulid::nil()).relative_url(), - Cow::Borrowed("/login?next=continue_authorization_grant&id=00000000000000000000000000") + Cow::Borrowed("/login?kind=continue_authorization_grant&id=00000000000000000000000000") ); }