Updating name references
pr Build / Rustfmt (pull_request) Successful in 50s
pr Build / Clippy (pull_request) Successful in 1m42s
pr Build / Check (pull_request) Successful in 2m7s

This commit is contained in:
2026-07-13 17:17:36 -04:00
parent 83f79a1cb8
commit 7a3a482f0e
7 changed files with 44 additions and 44 deletions
+6 -6
View File
@@ -1,7 +1,7 @@
use textsender_auth;
use textsender_auth::callers;
use textsender_auth::db;
use textsender_auth::init;
use schedtxt_auth;
use schedtxt_auth::callers;
use schedtxt_auth::db;
use schedtxt_auth::init;
mod db_mgr {
use std::str::FromStr;
@@ -231,7 +231,7 @@ pub mod requests {
user_id: &uuid::Uuid,
) -> Result<axum::response::Response, axum::http::Error> {
let url = super::util::format_url_with_value(
textsender_auth::callers::endpoints::GET_USER_PROFILE,
schedtxt_auth::callers::endpoints::GET_USER_PROFILE,
user_id,
);
match axum::http::Request::builder()
@@ -1063,7 +1063,7 @@ async fn test_get_user_profile() {
match requests::get_user_profile(&app, &user_id).await {
Ok(response) => {
match util::convert_response::<
textsender_auth::callers::login::response::GetUserProfileResponse,
schedtxt_auth::callers::login::response::GetUserProfileResponse,
>(response)
.await
{