@@ -74,9 +74,9 @@ TEST_CASE("TableCSV", "[tablecsv]")
74
74
75
75
// clang-format off
76
76
auto table_str1 = std::string (
77
- " Header Col 1, Header Col 2, Header Col 3\n "
78
- " NULL, +2.000000000e+00, +3.000000000e+00\n "
79
- " NULL, NULL, +6.000000000e+00\n "
77
+ " Header Col 1, Header Col 2, Header Col 3\n "
78
+ " NULL, +2.000000000e+00, +3.000000000e+00\n "
79
+ " NULL, NULL, +6.000000000e+00\n "
80
80
);
81
81
// clang-format on
82
82
CHECK (table.format_table () == table_str1);
@@ -87,9 +87,9 @@ TEST_CASE("TableCSV", "[tablecsv]")
87
87
88
88
// clang-format off
89
89
auto table_str2 = std::string (
90
- " Header Col 1, Header Col 2, Header Col 3\n "
91
- " NULL, +2.000000e+00, +3.000000000e+00\n "
92
- " NULL, NULL, +6.000000000e+00\n "
90
+ " Header Col 1, Header Col 2, Header Col 3\n "
91
+ " NULL, +2.000000e+00, +3.000000000e+00\n "
92
+ " NULL, NULL, +6.000000000e+00\n "
93
93
);
94
94
// clang-format on
95
95
CHECK (table.format_table () == table_str2);
@@ -101,9 +101,9 @@ TEST_CASE("TableCSV", "[tablecsv]")
101
101
102
102
// clang-format off
103
103
auto table_str3 = std::string (
104
- " Header Col 1,Header Col 2, Header Col 3\n "
105
- " NULL, 2.00e+00, +3.000000000e+00\n "
106
- " NULL, NULL, +6.000000000e+00\n "
104
+ " Header Col 1,Header Col 2, Header Col 3\n "
105
+ " NULL, 2.00e+00, +3.000000000e+00\n "
106
+ " NULL, NULL, +6.000000000e+00\n "
107
107
);
108
108
// clang-format on
109
109
CHECK (table.format_table () == table_str3);
0 commit comments