(self)
| 974 | _test_passthrough_attr(tresp(), "timestamp_end") |
| 975 | |
| 976 | def test_http_version(self): |
| 977 | _test_decoded_attr(tresp(), "http_version") |
| 978 | assert tresp(http_version=b"HTTP/1.0").is_http10 |
| 979 | assert tresp(http_version=b"HTTP/1.1").is_http11 |
| 980 | assert tresp(http_version=b"HTTP/2.0").is_http2 |
| 981 | |
| 982 | |
| 983 | class TestMessageContentEncoding: |
nothing calls this directly
no test coverage detected