Skip to content

Commit

Permalink
🎨 cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
comavius committed Oct 6, 2024
1 parent fb89a14 commit 95cc8e4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion judge-control-app/src/remote_exec/ssh/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ async fn test_ssh_connection_timeout() {
password: "password".to_string(),
};
let resp = ssh
.exec("sleep 1", Duration::from_millis(1), Duration::from_millis(1))
.exec(
"sleep 1",
Duration::from_millis(1),
Duration::from_millis(1),
)
.await;
stop_ssh_docker_container(uuid).await.unwrap();
assert!(resp.is_err_and(|e| match e {
Expand Down

0 comments on commit 95cc8e4

Please sign in to comment.