()
| 57 | |
| 58 | @pytest.mark.flaky(reruns=3, reruns_delay=2) |
| 59 | def test_len_and_keys_len(): |
| 60 | h = HeaderMap() |
| 61 | h.insert("A", "1") |
| 62 | h.append("A", "2") |
| 63 | h.insert("B", "3") |
| 64 | assert len(h) == 3 |
| 65 | assert h.keys_len() == 2 |
| 66 | |
| 67 | |
| 68 | @pytest.mark.flaky(reruns=3, reruns_delay=2) |