From: Martin Kronbichler Date: Tue, 26 Nov 2024 17:26:11 +0000 (+0100) Subject: One more test update X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17891%2Fhead;p=dealii.git One more test update --- diff --git a/tests/matrix_free/matrix_vector_rt_face_common.h b/tests/matrix_free/matrix_vector_rt_face_common.h index 3b1b9fcfd4..ab02c1aa65 100644 --- a/tests/matrix_free/matrix_vector_rt_face_common.h +++ b/tests/matrix_free/matrix_vector_rt_face_common.h @@ -230,7 +230,7 @@ do_test(const DoFHandler &dof, const MappingQ mapping(m_degree); MatrixFree mf_data; { - const QGaussLobatto<1> quad(n_q_points); + const QGauss<1> quad(n_q_points); typename MatrixFree::AdditionalData data; data.tasks_parallel_scheme = MatrixFree::AdditionalData::none; data.mapping_update_flags = update_piola; @@ -266,7 +266,7 @@ do_test(const DoFHandler &dof, FEFaceValues fe_val(mapping, dof.get_fe(), - QGaussLobatto(n_q_points), + QGauss(n_q_points), update_values | update_gradients | update_JxW_values | update_piola);