reformat tests

This commit is contained in:
Dmitry Afanasyev 2022-08-14 04:21:47 +03:00
parent ad90d3b02f
commit 68caa17527
3 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import pytest import pytest
from aiogram import Bot, types from aiogram import Bot, types
from app.tests.conftest import FakeTelegram from app.tests.conftest import FakeTelegram
from app.tests.factories import UserFactory from app.tests.data.factories import UserFactory
pytestmark = [ pytestmark = [
pytest.mark.asyncio, pytest.mark.asyncio,

View File

@ -1,5 +1,5 @@
import factory import factory
from app.tests.models import User from app.tests.data.models import User
from faker import Faker from faker import Faker
faker = Faker('ru_RU') faker = Faker('ru_RU')