()
| 38 | |
| 39 | |
| 40 | def test_old_parameter_name(): |
| 41 | example = "&\n<html>\n&" |
| 42 | with pytest.deprecated_call(): |
| 43 | assert fix_text(example, fix_entities=True) == "&\n<html>\n&" |
| 44 | with pytest.deprecated_call(): |
| 45 | assert fix_text(example, fix_entities=False) == "&\n<html>\n&" |
nothing calls this directly
no test coverage detected