convert usage of fail* to assert*
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
index 6edc7d3..228d82b 100644
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -216,9 +216,9 @@
def check_status_and_reason(self, response, status, data=None):
body = response.read()
- self.assert_(response)
+ self.assertTrue(response)
self.assertEquals(response.status, status)
- self.assert_(response.reason != None)
+ self.assertTrue(response.reason != None)
if data:
self.assertEqual(data, body)