Fix case where indentation was causing the plain list item matcher to match items it wouldn't use in other parts.

This commit is contained in:
Tom Alexander
2023-04-14 19:56:54 -04:00
parent 143ac49777
commit 8549a6b0db
2 changed files with 64 additions and 41 deletions

View File

@@ -9,7 +9,7 @@ cd "$DIR"
: ${org_dir:="$DIR/../org_mode_samples"}
: ${compare_bin:="$DIR/../target/debug/org_compare"}
test_files=$(find $org_dir -type f -name '*.org')
test_files=$(find $org_dir -type f -name '*.org' | sort)
cargo build --bin org_compare