We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f61ef2a commit 8ad0244Copy full SHA for 8ad0244
tests/openssh.rs
@@ -323,11 +323,11 @@ async fn over_session_ok() {
323
async fn over_session_ok_require_escaping_arguments() {
324
for session in connects().await {
325
let mut command = std::process::Command::new("echo")
326
- .arg("\"\'\'foo\'\'\"")
+ .arg("\"\'\' foo \'\'\"")
327
.over_ssh(&session).expect("No env vars or current working dir is set.");
328
329
let child = command.output().await.unwrap();
330
- assert_eq!(child.stdout, b"\"\'\'foo\'\'\"\n");
+ assert_eq!(child.stdout, b"\"\'\' foo \'\'\"\n");
331
332
let child = session
333
.command("echo")
0 commit comments