From 1a9fe57d84f92fb10c62019aecdf8bcccc71a65c Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Thu, 8 Dec 2022 15:11:44 +0100 Subject: [PATCH] router: fix tests --- crates/router/src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/router/src/lib.rs b/crates/router/src/lib.rs index 9e6bc468..f928a207 100644 --- a/crates/router/src/lib.rs +++ b/crates/router/src/lib.rs @@ -44,9 +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&data=00000000000000000000000000" - ) + Cow::Borrowed("/login?next=continue_authorization_grant&id=00000000000000000000000000") ); }