Fix tests for -strict-style

This commit is contained in:
gingerBill
2023-06-26 15:51:08 +01:00
parent 3dec55f009
commit c8f475174e

View File

@@ -238,10 +238,10 @@ find_and_add_examples :: proc(docs: string, package_name: string, entity_name: s
}
}
// Remove first layer of tabs which are always present
for line in &example_block.lines {
for &line in example_block.lines {
line = strings.trim_prefix(line, "\t")
}
for line in &output_block.lines {
for &line in output_block.lines {
line = strings.trim_prefix(line, "\t")
}
append(&g_examples_to_verify, Example_Test {