diff --git a/tests/test_meshregion.py b/tests/test_meshregion.py index 5076840eed..db6c49ee51 100644 --- a/tests/test_meshregion.py +++ b/tests/test_meshregion.py @@ -643,17 +643,6 @@ def test_mesh_deep_copy2(simple_bar_model, server_type): ) -@pytest.mark.skipif( - not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_4_0, - reason="Bug in server version lower than 4.0", -) -def test_semi_parabolic_meshed_region(server_type, allkindofcomplexity): - mesh = dpf.core.Model(allkindofcomplexity, server=server_type).metadata.meshed_region - has_semi_par = False - el = mesh.elements[0] - assert dpf.core.element_types.descriptor(el.type).n_nodes != len(el.connectivity) - - @pytest.mark.skipif( not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_4_0, reason="Bug in server version lower than 4.0",