(connection, request)
| 194 | """Client reads HTTP response.""" |
| 195 | |
| 196 | def http_response(connection, request): |
| 197 | return connection.respond(http.HTTPStatus.OK, "👌") |
| 198 | |
| 199 | with run_server(process_request=http_response) as server: |
| 200 | with self.assertRaises(InvalidStatus) as raised: |