fix some tests

This commit is contained in:
David Pedersen
2022-11-23 18:47:58 +01:00
parent e85538b047
commit ae72d18e37
23 changed files with 24 additions and 55 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ use std::{convert::Infallible, fmt, marker::PhantomData};
/// .route("/set", post(set_secret))
/// .route("/get", get(get_secret))
/// .with_state(state);
/// # let _: axum::routing::RouterService = app;
/// # let _: axum::Router = app;
/// ```
pub struct PrivateCookieJar<K = Key> {
jar: cookie::CookieJar,
+1 -1
View File
@@ -86,7 +86,7 @@ use std::{convert::Infallible, fmt, marker::PhantomData};
/// .route("/sessions", post(create_session))
/// .route("/me", get(me))
/// .with_state(state);
/// # let _: axum::routing::RouterService = app;
/// # let _: axum::Router = app;
/// ```
pub struct SignedCookieJar<K = Key> {
jar: cookie::CookieJar,