Skip to content

Commit c6f52be

Browse files
committed
Fix unnecessary let _ = binding reported by clippy
Signed-off-by: Jiahao XU <[email protected]>
1 parent 72f4888 commit c6f52be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/openssh.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ async fn process_exit_on_signal() {
579579
assert!(matches!(failed, Error::RemoteProcessTerminated));
580580

581581
// the connection should still work though
582-
let _ = session.check().await.unwrap();
582+
session.check().await.unwrap();
583583
}
584584
}
585585

0 commit comments

Comments
 (0)