Skip to content

Commit

Permalink
Apply isort on tests folder
Browse files Browse the repository at this point in the history
  • Loading branch information
umluizlima committed Nov 2, 2020
1 parent c02c3da commit df7027d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/unit/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pytest import fixture

from app.core.schemas import EmailSchema, TransactionalSchema, Transactional
from app.core.schemas import EmailSchema, Transactional, TransactionalSchema
from app.settings import Settings


Expand Down
2 changes: 1 addition & 1 deletion tests/unit/routers/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from app.api import api
from app.api.dependencies import tasks_producer
from app.settings import get_settings, Settings
from app.settings import Settings, get_settings

mock_producer = MagicMock()

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/schemas/test_transactional_schema.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pydantic.error_wrappers import ValidationError
from pytest import raises

from app.core.schemas import TransactionalSchema, Transactional
from app.core.schemas import Transactional, TransactionalSchema


def test_transactional_type_field_is_required(transactional_message_dict):
Expand Down

0 comments on commit df7027d

Please sign in to comment.