fix macos integration test

This commit is contained in:
Lucas Nogueira
2025-07-07 13:24:25 -03:00
parent 940ed70420
commit 201a001f0a
2 changed files with 26 additions and 8 deletions
+1 -1
View File
@@ -1143,7 +1143,7 @@ impl Update {
if let Some(mut stdin) = child.stdin.take() {
// Write password to stdin
writeln!(stdin, "{}", password)?;
writeln!(stdin, "{password}")?;
}
let status = child.wait()?;