diff options
Diffstat (limited to 'test/test_asgi_application.py')
-rw-r--r-- | test/test_asgi_application.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/test_asgi_application.py b/test/test_asgi_application.py index 179a69ee..b382e2f2 100644 --- a/test/test_asgi_application.py +++ b/test/test_asgi_application.py @@ -406,16 +406,16 @@ Connection: close self.load('threads') assert 'success' in self.conf( - '4', 'applications/threads/threads' - ), 'configure 4 threads' + '2', 'applications/threads/threads' + ), 'configure 2 threads' socks = [] - for i in range(4): + for i in range(2): (_, sock) = self.get( headers={ 'Host': 'localhost', - 'X-Delay': '2', + 'X-Delay': '3', 'Connection': 'close', }, no_recv=True, @@ -424,7 +424,7 @@ Connection: close socks.append(sock) - time.sleep(0.25) # required to avoid greedy request reading + time.sleep(1.0) # required to avoid greedy request reading threads = set() |