From a64c4862b9a8e1e1449a979183ccceda4123bd1e Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 17 May 2019 02:09:30 +0200 Subject: [PATCH] Added debug output to CSV test. To figure out why the test fails in the CI. --- tests/test_csv.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_csv.cpp b/tests/test_csv.cpp index 45e7f87..49c48c7 100644 --- a/tests/test_csv.cpp +++ b/tests/test_csv.cpp @@ -56,6 +56,8 @@ SCENARIO ("The CSV export works correctly") { csv_ok = true; } + std::cout << "|" << output.str() << "|\n" + << "|" << expected << "|\n"; } catch (const std::exception &e) {