diff --git a/tests/test_ItemValue.cpp b/tests/test_ItemValue.cpp index e5d56e66936d92f04a76ef1cb2303123d59fa858..942b4f57bafd0528ed31e82709213207c2dea619 100644 --- a/tests/test_ItemValue.cpp +++ b/tests/test_ItemValue.cpp @@ -29,8 +29,6 @@ TEST_CASE("ItemValue", "[mesh]") const Mesh<Connectivity<1>>& mesh_1d = MeshDataBaseForTests::get().cartesianMesh<1>(); const Connectivity<1>& connectivity = mesh_1d.connectivity(); - EdgeValue<int>{connectivity}; - REQUIRE_NOTHROW(NodeValue<int>{connectivity}); REQUIRE_NOTHROW(EdgeValue<int>{connectivity}); REQUIRE_NOTHROW(FaceValue<int>{connectivity}); @@ -56,8 +54,6 @@ TEST_CASE("ItemValue", "[mesh]") const Mesh<Connectivity<2>>& mesh_2d = MeshDataBaseForTests::get().cartesianMesh<2>(); const Connectivity<2>& connectivity = mesh_2d.connectivity(); - EdgeValue<int>{connectivity}; - REQUIRE_NOTHROW(NodeValue<int>{connectivity}); REQUIRE_NOTHROW(EdgeValue<int>{connectivity}); REQUIRE_NOTHROW(FaceValue<int>{connectivity}); @@ -79,8 +75,6 @@ TEST_CASE("ItemValue", "[mesh]") const Mesh<Connectivity<3>>& mesh_3d = MeshDataBaseForTests::get().cartesianMesh<3>(); const Connectivity<3>& connectivity = mesh_3d.connectivity(); - EdgeValue<int>{connectivity}; - REQUIRE_NOTHROW(NodeValue<int>{connectivity}); REQUIRE_NOTHROW(EdgeValue<int>{connectivity}); REQUIRE_NOTHROW(FaceValue<int>{connectivity});