summaryrefslogtreecommitdiffstats
path: root/src/tests/fakes
diff options
context:
space:
mode:
authorKelvin Zhang <zhangxp1998@gmail.com>2020-01-06 17:57:23 -0500
committerKelvin Zhang <zhangxp1998@gmail.com>2020-01-07 16:27:23 -0500
commit9737ba98c01f3198e916c54f437801e12cce440d (patch)
treef569c80b05566f14d529b794577fd18128ffd8d6 /src/tests/fakes
parent2a30061b68af040a1a28de8624b5df85571a0a78 (diff)
Update snapshots because new process identification logic changes output
Diffstat (limited to 'src/tests/fakes')
-rw-r--r--src/tests/fakes/fake_input.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tests/fakes/fake_input.rs b/src/tests/fakes/fake_input.rs
index 1294e4c..f508be5 100644
--- a/src/tests/fakes/fake_input.rs
+++ b/src/tests/fakes/fake_input.rs
@@ -102,7 +102,7 @@ pub fn get_open_sockets() -> (HashMap<LocalSocket, String>, std::vec::Vec<Connec
Connection::new(
SocketAddr::new(IpAddr::V4(Ipv4Addr::new(2, 2, 2, 2)), 54321),
local_ip,
- 443,
+ 4434,
Protocol::Tcp,
)
.unwrap(),
@@ -112,7 +112,7 @@ pub fn get_open_sockets() -> (HashMap<LocalSocket, String>, std::vec::Vec<Connec
Connection::new(
SocketAddr::new(IpAddr::V4(Ipv4Addr::new(3, 3, 3, 3)), 1337),
local_ip,
- 443,
+ 4435,
Protocol::Tcp,
)
.unwrap(),
@@ -122,7 +122,7 @@ pub fn get_open_sockets() -> (HashMap<LocalSocket, String>, std::vec::Vec<Connec
Connection::new(
SocketAddr::new(IpAddr::V4(Ipv4Addr::new(4, 4, 4, 4)), 1337),
local_ip,
- 443,
+ 4432,
Protocol::Tcp,
)
.unwrap(),
@@ -136,7 +136,7 @@ pub fn get_open_sockets() -> (HashMap<LocalSocket, String>, std::vec::Vec<Connec
Protocol::Tcp,
)
.unwrap(),
- String::from("3"),
+ String::from("1"),
);
let mut local_socket_to_procs = HashMap::new();
let mut connections = std::vec::Vec::new();