Skip to content

Commit 33e6d85

Browse files
committed
abs imports
1 parent 901e1d3 commit 33e6d85

14 files changed

+24
-24
lines changed

src/tests/mesh/edges/test_mesh_edges_protocols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
from src.opengeodeweb_viewer.rpc.mesh.edges.mesh_edges_protocols import VtkMeshEdgesView
77

88
# Local application imports
9-
from src.tests.mesh.test_mesh_protocols import test_register_mesh
10-
from ...conftest import ServerMonitor
9+
from tests.mesh.test_mesh_protocols import test_register_mesh
10+
from tests.conftest import ServerMonitor
1111

1212

1313
def test_edges_visibility(

src/tests/mesh/points/test_mesh_points_protocols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
)
99

1010
# Local application imports
11-
from src.tests.mesh.test_mesh_protocols import test_register_mesh
12-
from ...conftest import ServerMonitor
11+
from tests.mesh.test_mesh_protocols import test_register_mesh
12+
from tests.conftest import ServerMonitor
1313

1414

1515
def test_points_visibility(

src/tests/mesh/polygons/test_mesh_polygons_protocols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
from opengeodeweb_viewer.rpc.mesh.polygons.polygons_protocols import VtkMeshPolygonsView
66

77
# Local application imports
8-
from src.tests.mesh.test_mesh_protocols import test_register_mesh
9-
from ...conftest import ServerMonitor
8+
from tests.mesh.test_mesh_protocols import test_register_mesh
9+
from tests.conftest import ServerMonitor
1010

1111

1212
def test_polygons_color(

src/tests/mesh/polyhedra/test_mesh_polyhedra_protocols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
)
99

1010
# Local application imports
11-
from ...conftest import ServerMonitor
11+
from tests.conftest import ServerMonitor
1212

1313

1414
def test_register_mesh(

src/tests/mesh/test_mesh_protocols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import Callable
22
from opengeodeweb_viewer.rpc.mesh.mesh_protocols import VtkMeshView
3-
from ..conftest import ServerMonitor
3+
from tests.conftest import ServerMonitor
44

55

66
def test_register_mesh(

src/tests/model/blocks/test_model_blocks_protocols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
)
88

99
# Local application imports
10-
from src.tests.model.test_model_protocols import test_register_model_cube
11-
from ...conftest import ServerMonitor
10+
from tests.model.test_model_protocols import test_register_model_cube
11+
from tests.conftest import ServerMonitor
1212

1313

1414
def test_blocks_polyhedra_visibility(

src/tests/model/corners/test_model_corners_protocols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
)
88

99
# Local application imports
10-
from src.tests.model.test_model_protocols import test_register_model_cube
11-
from ...conftest import ServerMonitor
10+
from tests.model.test_model_protocols import test_register_model_cube
11+
from tests.conftest import ServerMonitor
1212

1313

1414
def test_corners_points_visibility(

src/tests/model/edges/test_model_edges_protocols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
)
88

99
# Local application imports
10-
from src.tests.model.test_model_protocols import test_register_model
11-
from ...conftest import ServerMonitor
10+
from tests.model.test_model_protocols import test_register_model
11+
from tests.conftest import ServerMonitor
1212

1313

1414
def test_edges_visibility(

src/tests/model/lines/test_model_lines_protocols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
)
88

99
# Local application imports
10-
from src.tests.model.test_model_protocols import test_register_model_cube
11-
from ...conftest import ServerMonitor
10+
from tests.model.test_model_protocols import test_register_model_cube
11+
from tests.conftest import ServerMonitor
1212

1313

1414
def test_lines_edges_visibility(

src/tests/model/points/test_model_points_protocols.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
)
88

99
# Local application imports
10-
from src.tests.model.test_model_protocols import test_register_model
11-
from ...conftest import ServerMonitor
10+
from tests.model.test_model_protocols import test_register_model
11+
from tests.conftest import ServerMonitor
1212

1313

1414
def test_points_visibility(

0 commit comments

Comments
 (0)