def test_small_request_headers_add_through_lower_api(): request = Request("GET", b"https://hello-world", None) request.add_header(b"Hello", b"World") raw_bytes = write_small_request(request) assert b"Hello: World\r\n" in raw_bytes
def test_small_request_headers_add_through_lower_api(): request = Request('GET', b'https://hello-world', None) request.add_header(b'Hello', b'World') raw_bytes = write_small_request(request) assert b'Hello: World\r\n' in raw_bytes