Skip to content

Commit

Permalink
removed exit
Browse files Browse the repository at this point in the history
  • Loading branch information
dominusmars committed Mar 1, 2024
1 parent fe479d8 commit b6d8b82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ssh.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ for (let computer of computers) {
throw new Error("Unable to connect to target server");
}
let socket = await ssh.shell();
let result = await sendCommand(socket, "echo hello", true);
let result = await sendCommand(socket, "echo hello");
assert.ok(result.includes("echo"), "Didn't get expected output: " + result);
await ssh.close();
});
Expand Down

0 comments on commit b6d8b82

Please sign in to comment.