Skip to content

Commit

Permalink
test: Increase wait time in test_examples after launching server process
Browse files Browse the repository at this point in the history
  • Loading branch information
Tradias committed Dec 9, 2024
1 parent 75c673e commit 7d64f45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/example/test_examples.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ TEST_CASE("examples")
}
boost::process::child server(server_program, args);
REQUIRE(server.valid());
std::this_thread::sleep_for(std::chrono::milliseconds(100));
std::this_thread::sleep_for(std::chrono::milliseconds(350));
boost::process::child client(client_program, std::move(args));
REQUIRE(client.valid());
server.join();
Expand Down

0 comments on commit 7d64f45

Please sign in to comment.