Code formatting

This commit is contained in:
phoenix
2025-10-10 14:25:13 -04:00
parent 797430c9d2
commit 101547dbf4
3 changed files with 21 additions and 5 deletions
+12 -2
View File
@@ -116,11 +116,21 @@ mod tests {
result
);
assert_eq!(result.has_delimiter, true, "The {} variable has an issue finding the delimiter", result.key);
assert_eq!(
result.has_delimiter, true,
"The {} variable has an issue finding the delimiter",
result.key
);
match icarus_envy::utility::delimitize(&result) {
Ok(allowed_origins) => {
assert_eq!(allowed_origins.len(), 2, "The amount of allowed origins does not match. {} {}", allowed_origins.len(), 2)
assert_eq!(
allowed_origins.len(),
2,
"The amount of allowed origins does not match. {} {}",
allowed_origins.len(),
2
)
}
Err(err) => {
assert!(false, "Error: {:?}", err)