Skip to content

Commit

Permalink
Fix test parallelisation
Browse files Browse the repository at this point in the history
  • Loading branch information
emhane committed Jan 6, 2024
1 parent 43be184 commit d6550fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/service/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,15 +173,15 @@ async fn test_connection_direction_on_inject_session_established() {
let ip = std::net::Ipv4Addr::LOCALHOST;
let enr = EnrBuilder::new("v4")
.ip4(ip)
.udp4(10001)
.udp4(10003)
.build(&enr_key1)
.unwrap();

let enr_key2 = CombinedKey::generate_secp256k1();
let ip2 = std::net::Ipv4Addr::LOCALHOST;
let enr2 = EnrBuilder::new("v4")
.ip4(ip2)
.udp4(10002)
.udp4(10004)
.build(&enr_key2)
.unwrap();

Expand Down

0 comments on commit d6550fb

Please sign in to comment.