See https://github.com/encode/httpx/issues/1833
()
| 555 | |
| 556 | |
| 557 | def test_resolution_error_1833(): |
| 558 | """ |
| 559 | See https://github.com/encode/httpx/issues/1833 |
| 560 | """ |
| 561 | url = httpx.URL("https://example.com/?[]") |
| 562 | assert url.join("/") == "https://example.com/" |
| 563 | |
| 564 | |
| 565 | # Tests for `URL.copy_with()`. |