Changed exception error message

This commit is contained in:
Sheng
2019-02-21 16:12:48 +08:00
parent 4b27da5f38
commit b25fbd7b57
3 changed files with 4 additions and 3 deletions

View File

@@ -653,7 +653,7 @@ class TestAppWithTooManyConnections(OtherTestBase):
url = self.get_url('/')
response = yield self.async_post(url, self.body)
data = json.loads(to_str(response.body))
self.assertEqual('Too many connections.', data['status'])
self.assertEqual('Too many live connections.', data['status'])
clients['127.0.0.1'].clear()
response = yield self.async_post(url, self.body)