Fixed two of the three failing xml rpc tests

This commit is contained in:
Christian Heimes 2007-12-08 18:38:20 +00:00
parent 9bbac5065e
commit 0aa93cda79
2 changed files with 2 additions and 2 deletions

View file

@ -479,7 +479,7 @@ def do_POST(self):
def report_404 (self):
# Report a 404 error
self.send_response(404)
response = 'No such page'
response = b'No such page'
self.send_header("Content-type", "text/plain")
self.send_header("Content-length", str(len(response)))
self.end_headers()

View file

@ -424,7 +424,7 @@ def test_non_existing_multicall(self):
self.assertEqual(result.results[0]['faultCode'], 1)
self.assertEqual(result.results[0]['faultString'],
'<type \'exceptions.Exception\'>:method "this_is_not_exists" '
'<type \'Exception\'>:method "this_is_not_exists" '
'is not supported')
except xmlrpclib.ProtocolError as e:
# ignore failures due to non-blocking socket 'unavailable' errors