diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-08 12:51:10 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-08 12:51:10 (GMT) |
commit | d3e1207191dcb84a58706a5101177f36c09c5681 (patch) | |
tree | dd8bafcf64e4b1fa8bdf65f21f44a2d04fc89861 /Lib/test/test_httpservers.py | |
parent | 6c9678e1a5651bbaa2bfa31d564f2117033fd494 (diff) | |
parent | 25d8aeac7c1e24df79c18f6391b7e42b873d66d8 (diff) | |
download | cpython-d3e1207191dcb84a58706a5101177f36c09c5681.zip cpython-d3e1207191dcb84a58706a5101177f36c09c5681.tar.gz cpython-d3e1207191dcb84a58706a5101177f36c09c5681.tar.bz2 |
Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref tests.
Diffstat (limited to 'Lib/test/test_httpservers.py')
-rw-r--r-- | Lib/test/test_httpservers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index e758cb9..15694af 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -552,7 +552,7 @@ class BaseHTTPRequestHandlerTestCase(unittest.TestCase): def verify_http_server_response(self, response): match = self.HTTPResponseMatch.search(response) - self.assertTrue(match is not None) + self.assertIsNotNone(match) def test_http_1_1(self): result = self.send_typical_request(b'GET / HTTP/1.1\r\n\r\n') |