From 89a0eb5559145732e89f5feb92c24922e084bbcf Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Tue, 20 Jun 2023 23:40:50 -0400 Subject: [PATCH] Fix quicktests --- tests/quick_tests/step.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); -- 2.39.5