Skip to content

Commit 1958363

Browse files
committed
Fix imports after rebase.
1 parent 8e91179 commit 1958363

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

tests/tests_integration/test_settings.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
import shutil
33

44
import pytest
5-
import test_utils
6-
from base import BaseTest
75

86
from datashuttle.configs import canonical_configs
97
from datashuttle.utils import validation
108
from datashuttle.utils.custom_exceptions import NeuroBlueprintError
119

10+
from .. import test_utils
1211
from ..base import BaseTest
1312

1413

tests/tests_tui/test_tui_logging.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import pytest
22

3-
import test_utils
4-
from tui_base import TuiBase
5-
63
from datashuttle.tui.app import TuiApp
74
from datashuttle.tui.tabs.logging import RichLogScreen
85

6+
from .. import test_utils
97
from .tui_base import TuiBase
108

119

tests/tests_tui/test_tui_selectdirectorytree.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import pytest
2-
from tui_base import TuiBase
32

43
from datashuttle.tui.app import TuiApp
54
from datashuttle.tui.screens.modal_dialogs import (
65
SelectDirectoryTreeScreen,
76
)
87

8+
from .tui_base import TuiBase
9+
910

1011
class TestSelectTree(TuiBase):
1112
@pytest.mark.asyncio

tests/tests_tui/test_tui_widgets_and_defaults.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
from typing import Union
33

44
import pytest
5-
import test_utils
6-
from tui_base import TuiBase
75

86
from datashuttle.configs import canonical_configs
97
from datashuttle.tui.app import TuiApp
@@ -12,6 +10,7 @@
1210
)
1311
from datashuttle.tui.screens.new_project import NewProjectScreen
1412

13+
from .. import test_utils
1514
from .tui_base import TuiBase
1615

1716

0 commit comments

Comments
 (0)