Test fix
textsender_api PR / Rustfmt (pull_request) Successful in 29s
textsender_api PR / Clippy (pull_request) Successful in 1m36s
textsender_api PR / Check (pull_request) Successful in 3m6s

This commit is contained in:
2026-06-30 11:51:00 -04:00
parent 5eeca8c0af
commit aae52254b9
+1 -1
View File
@@ -204,7 +204,7 @@ pub async fn test_token() -> Result<String, josekit::JoseError> {
};
match textsender_models::token::create_token(&key, &token_resource, time::Duration::hours(1)) {
Ok((access_token, _some_time)) => Ok(access_token),
Ok(access_token) => Ok(access_token.access_token),
Err(err) => Err(err),
}
}