Avoid spurious test failures on busy machines

This commit is contained in:
teor 2021-10-18 08:58:34 +10:00 committed by GitHub
parent 4648f8fc70
commit 4430a48ef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ const DEFAULT_PROXY_CHANNEL_SIZE: usize = 100;
///
/// Note that if a test checks that no requests are received, each check has to wait for this
/// amount of time, so this may affect the test execution time.
const DEFAULT_MAX_REQUEST_DELAY: Duration = Duration::from_millis(25);
const DEFAULT_MAX_REQUEST_DELAY: Duration = Duration::from_millis(500);
/// An internal type representing the item that's sent in the [`broadcast`] channel.
///