formatter: bunch of updates to the formatter

This commit is contained in:
Tyler Wilding
2024-05-18 13:50:24 -04:00
parent a61f24a168
commit 42a8df39ef
19 changed files with 764 additions and 166 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ std::vector<TestDefinition> get_test_definitions(const fs::path& file_path) {
if (!curr_test.name.empty() && line.empty()) {
i++;
while (true) {
if (contents.at(i) == "---") {
if (str_util::trim(contents.at(i)) == "---") {
i++;
curr_test.input = str_util::trim(curr_test.input);
break;