From cc92d9675a1ee9f624eb2570d493d5a1baf9b5c6 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Mon, 3 Aug 2020 10:21:37 -0400 Subject: [PATCH] fix tests/simplex/data_out_write_vtk_01 --- tests/simplex/data_out_write_vtk_01.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/simplex/data_out_write_vtk_01.cc b/tests/simplex/data_out_write_vtk_01.cc index 027654e519..f830e658a2 100644 --- a/tests/simplex/data_out_write_vtk_01.cc +++ b/tests/simplex/data_out_write_vtk_01.cc @@ -56,7 +56,7 @@ void test(const FiniteElement &fe, const unsigned int n_components) { Triangulation tria; - Simplex::GridGenerator::subdivided_hyper_cube(tria, dim == 2 ? 4 : 2); + GridGenerator::subdivided_hyper_cube_with_simplices(tria, dim == 2 ? 4 : 2); DoFHandler dof_handler(tria); -- 2.39.5