Skip to content

Commit

Permalink
Fixes to pass tox -e check
Browse files Browse the repository at this point in the history
  • Loading branch information
subhashb committed Apr 30, 2019
1 parent 94e7ea6 commit 3acc80d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import pytest


base_dir = os.path.abspath(os.path.dirname(__file__))


Expand Down
2 changes: 1 addition & 1 deletion tests/test_backends/test_basic_backend.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" Test the usecases supplied by the authentic application """
import base64
import pytest

import pytest
from passlib.hash import pbkdf2_sha256
from protean.core.tasklet import Tasklet

Expand Down
2 changes: 1 addition & 1 deletion tests/test_backends/test_jwt_backend.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" Test the usecases supplied by the JWT Backend """
import os
import pytest

import pytest
from passlib.hash import pbkdf2_sha256
from protean.conf import active_config
from protean.core.tasklet import Tasklet
Expand Down
4 changes: 1 addition & 3 deletions tests/test_usecases.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
""" Test the usecases supplied by the authentic application """
import pytest

from passlib.hash import pbkdf2_sha256
from protean.core.tasklet import Tasklet
from protean.services import email

from authentic.entities import Account
from authentic.usecases import ChangeAccountPasswordRequestObject
from authentic.usecases import ChangeAccountPasswordUseCase
from authentic.usecases import CreateAccountRequestObject
Expand All @@ -20,8 +20,6 @@
from authentic.usecases import UpdateAccountRequestObject
from authentic.usecases import UpdateAccountUseCase

from authentic.entities import Account


class TestAuthenticUsecases:
""" Test the usecases of Authentic"""
Expand Down

0 comments on commit 3acc80d

Please sign in to comment.