Skip to content

Commit ba9e78b

Browse files
committed
[TEST] Fixing multi field tests that seems to be broken by refactoring
1 parent 98450f0 commit ba9e78b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_common/test_integrations/test_multi_fields.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ def test_final_exported_fields(unconformity_complex):
137137

138138
if plot_pyvista or False:
139139
grid = interpolation_input.grid.regular_grid
140-
plot_block(BackendTensor.t.to_numpy(outputs[0].final_exported_fields._scalar_field_at_surface_points), grid)
141-
plot_block(BackendTensor.t.to_numpy(outputs[1].final_exported_fields._scalar_field_at_surface_points), grid)
142-
plot_block(BackendTensor.t.to_numpy(outputs[2].final_exported_fields._scalar_field_at_surface_points), grid)
140+
plot_block(BackendTensor.t.to_numpy(outputs[0].final_exported_fields._scalar_field), grid)
141+
plot_block(BackendTensor.t.to_numpy(outputs[1].final_exported_fields._scalar_field), grid)
142+
plot_block(BackendTensor.t.to_numpy(outputs[2].final_exported_fields._scalar_field), grid)
143143

144144

145145
@pytest.mark.skipif(TEST_SPEED.value <= 1, reason="Global test speed below this test value.")

0 commit comments

Comments
 (0)