(value: str)
| 730 | ], |
| 731 | ) |
| 732 | def test_authorization_to_header(value: str) -> None: |
| 733 | parsed = Authorization.from_header(value) |
| 734 | assert parsed is not None |
| 735 | assert parsed.to_header() == value |
| 736 | |
| 737 | |
| 738 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected