Skip to content
Snippets Groups Projects
Commit 13b28df0 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Improve net int test resilience

parent 6d4530b4
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ TEST_CASE("Listen and Connect", "[net]") {
node->close();
}
bool r = try_for(500, [p_connecting]{ return p_connecting->connectionCount() == 2; });
bool r = try_for(500, [p_connecting]{ return p_connecting->connectionCount() >= 2; });
REQUIRE( r );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment