Test fixes
Rust Build / Check (pull_request) Successful in 1m17s
Rust Build / Test Suite (pull_request) Failing after 48s
Rust Build / Rustfmt (pull_request) Successful in 38s
Rust Build / Clippy (pull_request) Successful in 1m18s
Rust Build / build (pull_request) Successful in 3m9s

This commit is contained in:
2026-06-11 17:33:49 -04:00
parent 97a0efa588
commit 0be21519a6
+5 -1
View File
@@ -440,7 +440,11 @@ async fn test_login_service_user() {
match register_service_user(&app).await {
Ok(user) => {
assert_eq!(false, user.id.is_nil(), "The service user id should not be nil");
assert_eq!(
false,
user.id.is_nil(),
"The service user id should not be nil"
);
/*
match login_service_user(&app, TEST_SERVICE_USERNAME, TEST_SERVICE_PASSPHRASE).await {
Ok(login_result) => {