test_markdown: Fix unnecessarily hard-coded user id.

This commit is contained in:
Mateusz Mandera 2021-07-09 20:34:19 +02:00 committed by Tim Abbott
parent e63e86dcb2
commit 6ec5a9698f
1 changed files with 1 additions and 1 deletions

View File

@ -1967,7 +1967,7 @@ class MarkdownTest(ZulipTestCase):
# incorrect(as it uses hamlet's id) so it should not be able
# to use that data for creating a valid mention.
content = f"@**King Hamlet|10** and @**aaron|{hamlet.id}**"
content = f"@**King Hamlet|{hamlet.id}** and @**aaron|{hamlet.id}**"
rendering_result = render_markdown(msg, content)
self.assertEqual(
rendering_result.rendered_content,