From: Wolfgang Bangerth Date: Wed, 6 Jul 2016 20:44:21 +0000 (-0500) Subject: Avoid outputting space at the end of the line. X-Git-Tag: v8.5.0-rc1~923^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f9c6b1132e1e87d254e9e4dcf2d80016f213609;p=dealii.git Avoid outputting space at the end of the line. The stored output files already don't have that space there. --- diff --git a/tests/fe/mapping_manifold_06.cc b/tests/fe/mapping_manifold_06.cc index 99c20549b3..cdd80c1c0f 100644 --- a/tests/fe/mapping_manifold_06.cc +++ b/tests/fe/mapping_manifold_06.cc @@ -57,7 +57,7 @@ void test() out << "set size ratio -1" << std::endl << "set terminal aqua " << dim+spacedim << std::endl - << (spacedim == 3 ? "s" : "") << "plot '-' w l " << std::endl; + << (spacedim == 3 ? "s" : "") << "plot '-' w l" << std::endl; for (typename Triangulation::active_cell_iterator cell = triangulation.begin_active(); cell != triangulation.end(); ++cell) @@ -79,7 +79,7 @@ void test() out << "e" << std::endl << std::endl << std::endl << "set terminal aqua " << 2*(dim+spacedim) +1 << std::endl - << (spacedim == 3 ? "s" : "") << "plot '-' with vectors " << std::endl; + << (spacedim == 3 ? "s" : "") << "plot '-' with vectors" << std::endl; for (typename Triangulation::active_cell_iterator cell = triangulation.begin_active(); cell != triangulation.end(); ++cell)