From: Daniel Arndt Date: Wed, 21 Jun 2023 03:40:50 +0000 (-0400) Subject: Fix quicktests X-Git-Tag: relicensing~757^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89a0eb5559145732e89f5feb92c24922e084bbcf;p=dealii.git Fix quicktests --- diff --git a/tests/quick_tests/step.cc b/tests/quick_tests/step.cc index 8ea2903f86..38de6b8af6 100644 --- a/tests/quick_tests/step.cc +++ b/tests/quick_tests/step.cc @@ -109,7 +109,8 @@ LaplaceProblem::setup_system() system_rhs.reinit(dof_handler.n_dofs()); IndexSet boundary_dofs = - DoFTools::extract_boundary_dofs(dof_handler, std::vector(1, true)); + DoFTools::extract_boundary_dofs(dof_handler, + ComponentMask(std::vector(1, true))); const types::global_dof_index first_boundary_dof = *boundary_dofs.begin();