From 9b20505dcd12a8128a582cf1a810a99f70f2e9b9 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Tue, 30 Oct 2018 11:34:29 -0700 Subject: [PATCH] stream() remove comma in NTTable --- src/factory/printer.cpp | 4 ++-- testApp/misc/testprinter.cpp | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/factory/printer.cpp b/src/factory/printer.cpp index c52d6fa..f7b0fcf 100644 --- a/src/factory/printer.cpp +++ b/src/factory/printer.cpp @@ -269,7 +269,7 @@ bool printTable(std::ostream& strm, const PVStructure& top) for(size_t c=0, N=coldat.size(); ccreatePVStructure(table)); testDiff(" \n" - "colA, colB\n" + "colA colB\n" , print(input->stream()), "empty table"); @@ -258,10 +258,10 @@ void showNTTable() testDiff(" \n" - "labelA, \"label B\"\n" - " 1, one\\x7F\n" - " 2, \"two words\"\n" - " 3, \"A \\'\"\"\\'\"\n" + "labelA \"label B\"\n" + " 1 one\\x7F\n" + " 2 \"two words\"\n" + " 3 \"A \\'\"\"\\'\"\n" , print(input->stream()), "with data"); }