Skip to content

Commit

Permalink
Update imports in tests to new module
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Nov 4, 2024
1 parent e004b51 commit fbdc143
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/test_databases_sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

from neon_users_service.databases.sqlite import SQLiteUserDatabase
from neon_users_service.exceptions import UserExistsError, UserNotFoundError
from neon_users_service.models import User, AccessRoles
from neon_data_models.models.user import User
from neon_data_models.enum import AccessRoles


class TestSqlite(TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from neon_users_service.databases.sqlite import SQLiteUserDatabase
from neon_users_service.exceptions import ConfigurationError, AuthenticationError, UserNotFoundError, \
UserNotMatchedError
from neon_users_service.models import User
from neon_data_models.models.user import User
from neon_users_service.service import NeonUsersService


Expand Down

0 comments on commit fbdc143

Please sign in to comment.