Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[BUG] Silly bug
  • Loading branch information
Leguark committed Jun 11, 2025
commit 33f6917cc4ebc12e3e7d84404fd6ef874e6a4652
4 changes: 2 additions & 2 deletions test/test_api/test_model_construction_granular.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_read_input_points():
_, _ = _read_data()


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


def test_create_grid():
Expand Down