Skip to content

Commit

Permalink
Merge pull request #13701 from kronbichler/fix_test_mapping_q_eulerian
Browse files Browse the repository at this point in the history
Fix test failure: Close the right AffineConstraints object
  • Loading branch information
kronbichler committed May 9, 2022
2 parents 1d883b6 + 6d51755 commit 27e98eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/mappings/mapping_q_eulerian_14.cc
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ test(const unsigned int n_ref = 0)
AffineConstraints<double> constraints;
constraints.reinit(locally_relevant_dofs);
DoFTools::make_hanging_node_constraints(dof_handler, constraints);
constraints_euler.close();
constraints.close();

// MG constraints:
MGConstrainedDoFs mg_constrained_dofs_euler;
Expand Down

0 comments on commit 27e98eb

Please sign in to comment.