From aec10ba6941cc35cd69fa721b1b300ee07257c79 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sun, 30 Jul 2006 21:20:48 +0000 Subject: [PATCH] Simplify test a bit git-svn-id: https://svn.dealii.org/trunk@13521 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/bits/fe_tools_14.cc | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/tests/bits/fe_tools_14.cc b/tests/bits/fe_tools_14.cc index 9c0fa56779..bc813ee5d7 100644 --- a/tests/bits/fe_tools_14.cc +++ b/tests/bits/fe_tools_14.cc @@ -1,5 +1,5 @@ -// $Id$ -// Version: $Name$ +// $Id: $ +// Version: $Name: $ // // Copyright (C) 2005, 2006 by the deal.II authors // @@ -30,9 +30,15 @@ check_this (const DoFHandler &dof_handler) const FiniteElement &fe = dof_handler.get_fe(); for (unsigned int i = 0; i < fe.dofs_per_face; ++i) - Assert (fe.face_to_equivalent_cell_index (i) == - fe.face_to_cell_index (i, 0), - ExcInternalError()); + { + deallog << fe.face_to_equivalent_cell_index (i) + << ' ' + << fe.face_to_cell_index (i, 0) + << std::endl; + Assert (fe.face_to_equivalent_cell_index (i) == + fe.face_to_cell_index (i, 0), + ExcInternalError()); + } deallog << "OK" << std::endl; } -- 2.39.5