Skip to content

Commit 33f6917

Browse files
committed
[BUG] Silly bug
1 parent e4eb6b8 commit 33f6917

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_api/test_model_construction_granular.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_read_input_points():
2626
_, _ = _read_data()
2727

2828

29-
def _read_data() -> tuple[OrientationsTable, SurfacePointsTable]:
29+
def _read_data() -> tuple[SurfacePointsTable, OrientationsTable]:
3030
data_path = 'https://raw.githubusercontent.com/cgre-aachen/gempy_data/master/'
3131
surface_points_file = pooch.retrieve(
3232
url=data_path + "data/input_data/jan_models/model1_surface_points.csv",
@@ -44,7 +44,7 @@ def _read_data() -> tuple[OrientationsTable, SurfacePointsTable]:
4444
orientations: OrientationsTable = read_orientations(
4545
path=orientations_file
4646
)
47-
return orientations, surface_points
47+
return surface_points, orientations
4848

4949

5050
def test_create_grid():

0 commit comments

Comments
 (0)