diff --git a/tests/test_utils/test_text_decorations.py b/tests/test_utils/test_text_decorations.py
index b4ccb5e8..c75620d2 100644
--- a/tests/test_utils/test_text_decorations.py
+++ b/tests/test_utils/test_text_decorations.py
@@ -48,7 +48,6 @@ class TestTextDecoration:
),
'test',
],
- [html_decoration, MessageEntity(type="url", offset=0, length=5), "test"],
[
html_decoration,
MessageEntity(type="spoiler", offset=0, length=5),
@@ -59,11 +58,6 @@ class TestTextDecoration:
MessageEntity(type="custom_emoji", offset=0, length=5, custom_emoji_id="42"),
'
test", ], + [markdown_decoration, MessageEntity(type="url", offset=0, length=5), "test"], + [ + markdown_decoration, + MessageEntity(type="text_link", offset=0, length=5, url="https://aiogram.dev"), + "[test](https://aiogram.dev)" + ], [markdown_decoration, MessageEntity(type="bold", offset=0, length=5), "*test*"], [markdown_decoration, MessageEntity(type="italic", offset=0, length=5), "_\rtest_\r"], [markdown_decoration, MessageEntity(type="code", offset=0, length=5), "`test`"],