Skip to content

Commit

Permalink
Fix incorrect port number in test
Browse files Browse the repository at this point in the history
  • Loading branch information
oteffahi committed Dec 11, 2024
1 parent efa8ac3 commit 5ef89d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/zenoh-transport/tests/unicast_openclose.rs
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ async fn openclose_tls_only_listen_with_interface_restriction() {
)
.unwrap();

let connect_endpoint: EndPoint = format!("tls/{}:{}", addrs[0], 13006).parse().unwrap();
let connect_endpoint: EndPoint = format!("tls/{}:{}", addrs[0], 13008).parse().unwrap();

// should not connect to local interface and external address
openclose_transport(&listen_endpoint, &connect_endpoint, false).await;
Expand Down

0 comments on commit 5ef89d9

Please sign in to comment.