diff --git a/apps/desktop/desktop_native/ssh_agent/tests/integration.rs b/apps/desktop/desktop_native/ssh_agent/tests/integration.rs index 57fb0f81402..a5cd9a0fb76 100644 --- a/apps/desktop/desktop_native/ssh_agent/tests/integration.rs +++ b/apps/desktop/desktop_native/ssh_agent/tests/integration.rs @@ -160,8 +160,10 @@ fn make_keys(dir: &str) -> Vec { .args(["-f", &format!("{}/ssh_rsa", dir), "-N", "", "-t", "rsa"]) .status() .expect("failed to execute process"); - let pubkey1 = fs::read_to_string(format!("{}/id_ed25519.pub", dir)).expect("failed to read public key"); - let pubkey2 = fs::read_to_string(format!("{}/ssh_rsa.pub", dir)).expect("failed to read public key"); + let pubkey1 = + fs::read_to_string(format!("{}/id_ed25519.pub", dir)).expect("failed to read public key"); + let pubkey2 = + fs::read_to_string(format!("{}/ssh_rsa.pub", dir)).expect("failed to read public key"); fs::write( format!("{}/authorized_keys", dir), format!("{}{}", pubkey1, pubkey2),