mirror of https://github.com/zulip/zulip.git
test_markdown: Fix unnecessarily hard-coded user id.
This commit is contained in:
parent
e63e86dcb2
commit
6ec5a9698f
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue