From: bangerth Date: Thu, 24 Jan 2008 00:02:55 +0000 (+0000) Subject: Fix function name X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf9ea79b3b3cf8fa158c8afc71d125455a2f14a6;p=dealii-svn.git Fix function name git-svn-id: https://svn.dealii.org/trunk@15657 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/no_flux_01.cc b/tests/deal.II/no_flux_01.cc index db8ff53584..dc2b27f886 100644 --- a/tests/deal.II/no_flux_01.cc +++ b/tests/deal.II/no_flux_01.cc @@ -33,7 +33,7 @@ template -void test_projection (const Triangulation& tr, +void test (const Triangulation& tr, const FiniteElement& fe) { DoFHandler dof(tr); @@ -71,7 +71,7 @@ void test_hyper_cube() for (unsigned int degree=1; degree<4; ++degree) { FESystem fe (FE_Q(degree), dim); - test_projection(tr, fe); + test(tr, fe); } } diff --git a/tests/deal.II/no_flux_02.cc b/tests/deal.II/no_flux_02.cc index 7dccf6d12f..e3c2c45f2d 100644 --- a/tests/deal.II/no_flux_02.cc +++ b/tests/deal.II/no_flux_02.cc @@ -35,7 +35,7 @@ template -void test_projection (const Triangulation& tr, +void test (const Triangulation& tr, const FiniteElement& fe) { DoFHandler dof(tr); @@ -75,7 +75,7 @@ void test_hyper_cube() FESystem fe (FE_Q(degree+1), 1, FE_Q(degree), dim, FE_Q(degree+1), 1); - test_projection(tr, fe); + test(tr, fe); } } diff --git a/tests/deal.II/no_flux_03.cc b/tests/deal.II/no_flux_03.cc index b41586f46b..5780ed3972 100644 --- a/tests/deal.II/no_flux_03.cc +++ b/tests/deal.II/no_flux_03.cc @@ -36,7 +36,7 @@ template -void test_projection (const Triangulation& tr, +void test (const Triangulation& tr, const FiniteElement& fe) { DoFHandler dof(tr); @@ -70,7 +70,7 @@ void test_hyper_sphere() for (unsigned int degree=1; degree<4; ++degree) { FESystem fe (FE_Q(degree), dim); - test_projection(tr, fe); + test(tr, fe); } }