Skip to content

Commit

Permalink
refactor: base class naming
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Sep 21, 2024
1 parent 52415cc commit 050ece8
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_core/test_model.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from dooit.api.workspace import Workspace
from tests.test_core._base import CoreTestBase
from tests.test_core.core_base import CoreTestBase


class TestModel(CoreTestBase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_core/test_todo.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from sqlalchemy import select
from dooit.api.exceptions import NoParentError, MultipleParentError
from tests.test_core._base import CoreTestBase
from tests.test_core.core_base import CoreTestBase
from dooit.api import Todo, Workspace


Expand Down
2 changes: 1 addition & 1 deletion tests/test_core/test_workspace.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tests.test_core._base import CoreTestBase
from tests.test_core.core_base import CoreTestBase
from dooit.api import Workspace


Expand Down
2 changes: 1 addition & 1 deletion tests/test_ui/test_startup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tests.test_ui._base import run_pilot
from tests.test_ui.ui_base import run_pilot


async def test_startup():
Expand Down
File renamed without changes.

0 comments on commit 050ece8

Please sign in to comment.