From 28c89c63843951d1cebbcea6606f06c4551ecb6b Mon Sep 17 00:00:00 2001 From: continuist Date: Sat, 20 Sep 2025 11:09:02 -0400 Subject: [PATCH] Make one small change to a backend local crate and see if caching speeds up backend test container build process --- backend/crates/domain/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/crates/domain/src/lib.rs b/backend/crates/domain/src/lib.rs index c392d07..df889e5 100644 --- a/backend/crates/domain/src/lib.rs +++ b/backend/crates/domain/src/lib.rs @@ -48,7 +48,7 @@ impl User { // Constructor with validation pub fn new(id: Uuid, username: String, email: String) -> Result { if username.trim().is_empty() { - return Err(DomainError::InvalidInput("Username cannot be empty".to_string())); + return Err(DomainError::InvalidInput("Username cannot be empty.".to_string())); } let now = Utc::now();