Skip to content

Commit bcae99e

Browse files
committed
[TEST] Fix wrong references
1 parent 535dcd7 commit bcae99e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/test_model_types/test_subduction.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
def test_subduction():
8-
data_path = os.path.abspath('../../examples')
8+
data_path = os.path.abspath('../examples')
99

1010
geo_model: gp.data.GeoModel = gp.create_geomodel(
1111
project_name='Onlap_relations',
@@ -58,7 +58,7 @@ def test_subduction():
5858

5959
# %%
6060
from gempy_engine.core.data.options import MeshExtractionMaskingOptions
61-
geo_model.interpolation_options.mesh_extraction_masking_options = MeshExtractionMaskingOptions.INTERSECT
61+
geo_model.interpolation_options.evaluation_options.mesh_extraction_masking_options = MeshExtractionMaskingOptions.INTERSECT
6262
s = gp.compute_model(geo_model)
6363

6464
gpv.plot_2d(geo_model)
@@ -68,14 +68,14 @@ def test_subduction():
6868
model=geo_model,
6969
show_surfaces=True,
7070
show_data=True,
71-
image=True,
71+
image=False,
7272
show_topography=True,
7373
kwargs_plot_structured_grid={'opacity': 0.1}
7474
)
7575

7676
# %%
7777
# ! White are True, black are False
78-
if False:
78+
if True:
7979
p = gpv.plot_2d(
8080
model=geo_model,
8181
cell_number=2,

0 commit comments

Comments
 (0)