From 7f9c6b1132e1e87d254e9e4dcf2d80016f213609 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 6 Jul 2016 15:44:21 -0500 Subject: [PATCH] Avoid outputting space at the end of the line. The stored output files already don't have that space there. --- tests/fe/mapping_manifold_06.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.5