diff --git a/tests/test_utils/test_text_decorations.py b/tests/test_utils/test_text_decorations.py
index 15394ee5..4811ee0c 100644
--- a/tests/test_utils/test_text_decorations.py
+++ b/tests/test_utils/test_text_decorations.py
@@ -1,6 +1,7 @@
from typing import List, Optional
import pytest
+
from aiogram.api.types import MessageEntity, User
from aiogram.utils.text_decorations import TextDecoration, html, markdown
@@ -123,13 +124,13 @@ class TestTextDecoration:
[
html,
"test1 test2 test3",
- [MessageEntity(type="bold", offset=6, length=6),],
+ [MessageEntity(type="bold", offset=6, length=6)],
"test1 test2 test3",
],
[
html,
"test1 test2",
- [MessageEntity(type="bold", offset=0, length=5),],
+ [MessageEntity(type="bold", offset=0, length=5)],
"test1 test2",
],
# [