Increase tolerances in --min-duration tests

The underpowered and oversubscribed CI servers are hell.
This commit is contained in:
Martin Hořeňovský
2020-07-07 11:36:51 +02:00
parent 13917c44b4
commit 90d6fd849e
2 changed files with 5 additions and 5 deletions

View File

@@ -16,8 +16,8 @@ TEST_CASE( "sleep_for_100ms", "[.min_duration_test][approvals]" )
CHECK( true );
}
TEST_CASE( "sleep_for_200ms", "[.min_duration_test][approvals]" )
TEST_CASE( "sleep_for_250ms", "[.min_duration_test][approvals]" )
{
std::this_thread::sleep_for( std::chrono::milliseconds( 200 ) );
std::this_thread::sleep_for( std::chrono::milliseconds( 250 ) );
CHECK( true );
}