1
0
mirror of https://codeberg.org/fediverse/fep.git synced 2026-08-05 03:35:52 +00:00

Fix test_clean_markdown failure (#869)

Fixes test failure introduced in https://codeberg.org/fediverse/fep/pulls/868

Reviewed-on: https://codeberg.org/fediverse/fep/pulls/869
This commit is contained in:
silverpill
2026-06-27 18:00:06 +02:00
committed by silverpill
parent 7eefb5cf57
commit 0bcbce25de
+1 -1
View File
@@ -37,7 +37,7 @@ def test_format_metatable():
("[link](http://test.example)", "link"),
("[link][link]", "link"),
("[a][a] [b][b]", "a b"),
('a "b"', r'a \"b\"'),
('a "b"', r'a "b"'),
],
)
def test_clean_markdown(text: str, expected: str):