()
| 70 | |
| 71 | |
| 72 | def test_headers_insert_appends_if_new(): |
| 73 | headers = httpx.Headers({"a": "a", "b": "b", "c": "c"}) |
| 74 | headers["d"] = "123" |
| 75 | assert list(headers.values()) == ["a", "b", "c", "123"] |
| 76 | |
| 77 | |
| 78 | def test_headers_insert_removes_all_existing(): |