From fe1b47d9992afc2d733ccae105645f3026df6d6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Del=20Pino?= <stephane.delpino44@gmail.com> Date: Wed, 31 Mar 2021 16:57:21 +0200 Subject: [PATCH] Remove useless instructions --- tests/test_ItemValue.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/test_ItemValue.cpp b/tests/test_ItemValue.cpp index e5d56e669..942b4f57b 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}); -- GitLab