gen_release_notes_test: don't evaluate backslash

Backport-to: *
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/42310>
This commit is contained in:
Eric Engestrom 2026-06-18 11:20:45 +02:00 committed by Marge Bot
parent c24285f993
commit 30b3a19d61

View file

@ -206,7 +206,7 @@ async def test_parse_issues(content: str, bugs: typing.List[str]) -> None:
@pytest.mark.asyncio
async def test_rst_escape():
out = inliner.quoteInline('foo@bar')
assert out == 'foo\@bar'
assert out == r'foo\@bar'
@pytest.mark.asyncio