We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe77878 commit 992ce7aCopy full SHA for 992ce7a
nts-pool-management/src/common/auth.rs
@@ -748,7 +748,8 @@ mod tests {
748
.unwrap();
749
assert_eq!(session.user.id, env.user.id);
750
751
- logout(env.user.id, &env.pool, CookieJar::new())
+ // ignore that we get a new cookie and return the previous one again
752
+ let _ = logout(env.user.id, &env.pool, CookieJar::new())
753
.await
754
755
@@ -793,7 +794,8 @@ mod tests {
793
794
795
796
- logout(env.admin.id, &env.pool, CookieJar::new())
797
+ // ignore that we get a new cookie and send the previous one again
798
+ let _ = logout(env.admin.id, &env.pool, CookieJar::new())
799
800
801
0 commit comments