Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zephyrchien committed Mar 15, 2024
1 parent 9660c29 commit 1d06012
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions realm_core/tests/proxy_v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ async fn proxy_v1() {
},
..Default::default()
},
bind_opts: Default::default(),
extra_raddrs: Vec::new(),
};

Expand All @@ -44,6 +45,7 @@ async fn proxy_v1() {
},
..Default::default()
},
bind_opts: Default::default(),
extra_raddrs: Vec::new(),
};

Expand Down
2 changes: 2 additions & 0 deletions realm_core/tests/proxy_v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ async fn proxy_v2() {
},
..Default::default()
},
bind_opts: Default::default(),
extra_raddrs: Vec::new(),
};

Expand All @@ -44,6 +45,7 @@ async fn proxy_v2() {
},
..Default::default()
},
bind_opts: Default::default(),
extra_raddrs: Vec::new(),
};

Expand Down
1 change: 1 addition & 0 deletions realm_core/tests/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ async fn tcp() {
.map(RemoteAddr::SocketAddr)
.unwrap(),
conn_opts: Default::default(),
bind_opts: Default::default(),
extra_raddrs: Vec::new(),
};

Expand Down
1 change: 1 addition & 0 deletions realm_core/tests/udp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ async fn udp() {
.map(RemoteAddr::SocketAddr)
.unwrap(),
conn_opts: Default::default(),
bind_opts: Default::default(),
extra_raddrs: Vec::new(),
};

Expand Down

0 comments on commit 1d06012

Please sign in to comment.