hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit f07c16a29c2f6ea89f97ead9191cec0deadf5e98
parent 74719e1e76ba307582a3f7cbaa8dddfb316bcb19
Author: Max Schillinger <max@mxsr.de>
Date:   Wed, 17 Jul 2024 21:53:47 +0200

regex: remove duplicate tests

Signed-off-by: Max Schillinger <max@mxsr.de>

Diffstat:
Mregex/+test.ha | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/regex/+test.ha b/regex/+test.ha @@ -250,7 +250,6 @@ fn run_rawreplace_case( (`^(cafe|b)x$`, "cafex", matchres::MATCH, 0, 5), (`^(cafe|b)x$`, "bx", matchres::MATCH, 0, 2), (`^(cafe|b)x$`, "XXXx", matchres::NOMATCH, 0, 0), - (`^(cafe|b)x$`, "bx", matchres::MATCH, 0, 2), ( `^(Privat|Jagd)(haftpflicht|schaden)versicherungs(police|betrag)$`, "Jagdhaftpflichtversicherungsbetrag", @@ -344,7 +343,6 @@ fn run_rawreplace_case( (`^test[[:blank:]]+$`, "testa", matchres::NOMATCH, 0, -1), (`^test[[:blank:]]+$`, "test ", matchres::MATCH, 0, -1), (`^test[^[:blank:]]+$`, "testx", matchres::MATCH, 0, -1), - (`^test[[:blank:]]+$`, "test ", matchres::MATCH, 0, -1), (`^test[^[:cntrl:]]+$`, "testa", matchres::MATCH, 0, -1), (`^test[[:digit:]]$`, "test1", matchres::MATCH, 0, -1), (`^test[[:digit:]]$`, "testa", matchres::NOMATCH, 0, -1),