diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2022-10-11 13:49:10 +0100 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2022-10-11 13:49:10 +0100 |
commit | 8e1e0471914b39da0634a23c4231ce98021a4cf7 (patch) | |
tree | 12560d3c455b54bda388c36c04eb61f8540d0680 /test/test_asgi_application.py | |
parent | 8d976cac522d5223fbe4a4360368a351a197ddbf (diff) | |
download | unit-8e1e0471914b39da0634a23c4231ce98021a4cf7.tar.gz unit-8e1e0471914b39da0634a23c4231ce98021a4cf7.tar.bz2 |
Tests: don't try to return response when "no_recv" is True.
Diffstat (limited to 'test/test_asgi_application.py')
-rw-r--r-- | test/test_asgi_application.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/test_asgi_application.py b/test/test_asgi_application.py index 34dfe18e..7f5f1578 100644 --- a/test/test_asgi_application.py +++ b/test/test_asgi_application.py @@ -277,10 +277,9 @@ custom-header: BLAH assert self.get()['status'] == 200, 'init' - (_, sock) = self.http( + sock = self.http( b"""GET / HTTP/1.1 """, - start=True, raw=True, no_recv=True, ) @@ -358,14 +357,13 @@ Connection: close socks = [] for i in range(2): - (_, sock) = self.get( + sock = self.get( headers={ 'Host': 'localhost', 'X-Delay': '3', 'Connection': 'close', }, no_recv=True, - start=True, ) socks.append(sock) |