diff options
| author | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2024-04-08 10:50:43 +0200 |
|---|---|---|
| committer | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2024-04-09 11:03:32 +0200 |
| commit | 8eea4eae01061fb76ce1aac45ea296f60867b62c (patch) | |
| tree | 09455ab30579abdf1b30b9038a7626f6d280fc11 /test/test-manager/src/vm/ssh.rs | |
| parent | 88bba34062f1efccafa52578d56601a97f8e5e2b (diff) | |
| download | mullvadvpn-8eea4eae01061fb76ce1aac45ea296f60867b62c.tar.xz mullvadvpn-8eea4eae01061fb76ce1aac45ea296f60867b62c.zip | |
Run `cargo +nightly fmt`
Diffstat (limited to 'test/test-manager/src/vm/ssh.rs')
| -rw-r--r-- | test/test-manager/src/vm/ssh.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/test-manager/src/vm/ssh.rs b/test/test-manager/src/vm/ssh.rs index 008045fc2b..f75fd39c53 100644 --- a/test/test-manager/src/vm/ssh.rs +++ b/test/test-manager/src/vm/ssh.rs @@ -1,8 +1,10 @@ /// A very thin wrapper on top of `ssh2`. use anyhow::{Context, Result}; use ssh2::Session; -use std::io::Read; -use std::net::{IpAddr, SocketAddr, TcpStream}; +use std::{ + io::Read, + net::{IpAddr, SocketAddr, TcpStream}, +}; /// Default `ssh` port. const PORT: u16 = 22; |
