kraken: csv: fix comma separation logic

Unfortunately, `std::ostream_iterator` puts its separator *after* every
element, not *in-between* each element.
This commit is contained in:
Bruno BELANYI 2022-03-12 00:45:27 +01:00
parent 6ee4e5b554
commit bd072e1025
2 changed files with 8 additions and 4 deletions

View file

@ -48,7 +48,7 @@ TEST(write_csv, empty) {
ASSERT_EQ(output.str(), expected);
}
TEST(write_csv, DISABLED_single_line) {
TEST(write_csv, single_line) {
auto const csv = csv_type{
{"a", "b", "c"},
};
@ -58,7 +58,7 @@ TEST(write_csv, DISABLED_single_line) {
ASSERT_EQ(output.str(), expected);
}
TEST(write_csv, DISABLED_multiple_lines) {
TEST(write_csv, multiple_lines) {
auto const csv = csv_type{
{"a", "b", "c"},
{"1", "2", "3"},