From: Timo Heister Date: Mon, 3 Aug 2020 14:21:37 +0000 (-0400) Subject: fix tests/simplex/data_out_write_vtk_01 X-Git-Tag: v9.3.0-rc1~1216^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc92d9675a1ee9f624eb2570d493d5a1baf9b5c6;p=dealii.git fix tests/simplex/data_out_write_vtk_01 --- 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);