Use " " instead of "" for the empty key so sh doesn't interpret it as falsy

This commit is contained in:
Luke Parker
2024-03-23 17:38:50 -04:00
parent 2a31d8552e
commit 5ea3b1bf97
5 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ macro_rules! serai_test {
.replace_env(
HashMap::from([
("RUST_LOG".to_string(), "runtime=debug".to_string()),
("KEY".to_string(), String::new()),
("KEY".to_string(), " ".to_string()),
])
)
.set_publish_all_ports(true)