diff options
Diffstat (limited to 'test/test_settings.py')
-rw-r--r-- | test/test_settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_settings.py b/test/test_settings.py index 965f7197..857bddcc 100644 --- a/test/test_settings.py +++ b/test/test_settings.py @@ -89,7 +89,7 @@ class TestSettings(TestApplicationPython): self.load('empty') def req(): - (resp, sock) = self.http( + (_, sock) = self.http( b"""GET / HTTP/1.1 """, start=True, @@ -173,7 +173,7 @@ Connection: close self.load('empty') def req(): - (resp, sock) = self.http( + (_, sock) = self.http( b"""POST / HTTP/1.1 Host: localhost Content-Length: 10 @@ -293,7 +293,7 @@ Connection: close self.load('empty') def req(): - (resp, sock) = self.get( + (_, sock) = self.get( headers={'Host': 'localhost', 'Connection': 'keep-alive'}, start=True, read_timeout=1, |