From ddbe713e6bdfedd0da03523f91ee3ecde59ad8ef Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Tue, 9 Sep 2008 16:43:57 +0200 Subject: [PATCH] winhttp: Increase sleep between two tests that connect to the same host. --- dlls/winhttp/tests/notification.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/winhttp/tests/notification.c b/dlls/winhttp/tests/notification.c index 784e35082a4..049e7ca18cd 100644 --- a/dlls/winhttp/tests/notification.c +++ b/dlls/winhttp/tests/notification.c @@ -152,7 +152,7 @@ static void test_connection_cache( void ) WinHttpCloseHandle( con ); WinHttpCloseHandle( ses ); - Sleep(1500); /* make sure connection is evicted from cache */ + Sleep(2000); /* make sure connection is evicted from cache */ info.index = 0; @@ -375,6 +375,6 @@ START_TEST (notification) { test_connection_cache(); test_redirect(); - Sleep(1500); /* make sure previous connection is evicted from cache */ + Sleep(2000); /* make sure previous connection is evicted from cache */ test_async(); }