From fc32fbb0c01645b36f92718ef5782e99f8b4899d Mon Sep 17 00:00:00 2001 From: Philipp Date: Mon, 2 Oct 2023 00:48:01 +0200 Subject: [PATCH] update test --- .../cpp_tests/containers/test_model_part_geometry_container.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kratos/tests/cpp_tests/containers/test_model_part_geometry_container.cpp b/kratos/tests/cpp_tests/containers/test_model_part_geometry_container.cpp index aed21cd9b286..de78da64805e 100644 --- a/kratos/tests/cpp_tests/containers/test_model_part_geometry_container.cpp +++ b/kratos/tests/cpp_tests/containers/test_model_part_geometry_container.cpp @@ -57,7 +57,7 @@ namespace Testing { // check correct error if multiple geometries with sam id are added KRATOS_EXPECT_EXCEPTION_IS_THROWN( model_part_lines.AddGeometry(p_line_2), - "Geometry with Id: 1 exists already."); + "Attempting to add Geometry with Id: 1, unfortunately a (different) geometry with the same Id already exists."); p_line_2->SetId(2); model_part_lines.AddGeometry(p_line_2);