Link IDs have a random ID and system path which is a problem for reproducible tests.
(render: str)
| 10 | |
| 11 | |
| 12 | def replace_link_ids(render: str) -> str: |
| 13 | """Link IDs have a random ID and system path which is a problem for |
| 14 | reproducible tests. |
| 15 | |
| 16 | """ |
| 17 | return re_link_ids.sub("id=0;foo\x1b", render) |
| 18 | |
| 19 | |
| 20 | test_data = [1, 2, 3] |
no outgoing calls
no test coverage detected