Fix an incorrect match case

This commit is contained in:
dmiller 2023-12-01 23:38:19 +00:00
parent b4404ad5dd
commit ee1d570b4e
2 changed files with 31 additions and 24 deletions

View file

@ -115,6 +115,8 @@ const struct expr_test tests[] = {
{"[<5]S", "2B", false},
{"[>A7]S", "FS", false},
{"[>A7]S", "A6S", false},
{"G", "0", false},
{"0-FFFF", "G", false},
{"", "", true}
};