From 0254abcd6c1be576c515b098415f636a640560a4 Mon Sep 17 00:00:00 2001 From: collerek Date: Wed, 2 Jun 2021 10:37:27 +0200 Subject: [PATCH] fix chars --- .../test_excluding_parent_fields_inheritance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_inheritance_and_pydantic_generation/test_excluding_parent_fields_inheritance.py b/tests/test_inheritance_and_pydantic_generation/test_excluding_parent_fields_inheritance.py index 103eaa6..ade7085 100644 --- a/tests/test_inheritance_and_pydantic_generation/test_excluding_parent_fields_inheritance.py +++ b/tests/test_inheritance_and_pydantic_generation/test_excluding_parent_fields_inheritance.py @@ -135,7 +135,7 @@ async def test_exclude_with_redefinition(): async def test_exclude_with_relation(): async with db: async with db.transaction(force_rollback=True): - user = await User(name="Michaił Kałasznikow").save() + user = await User(name="Michail Kalasznikow").save() test = await Gun(name="AK47", created_by=user).save() assert test.created_date is not None @@ -144,4 +144,4 @@ async def test_exclude_with_relation(): test2 = await Gun.objects.select_related("created_by").get(pk=test.pk) assert test2.name == "AK47" - assert test2.created_by.name == "Michaił Kałasznikow" + assert test2.created_by.name == "Michail Kalasznikow"