~sircmpwn/hare-dev

hare: regex: remove duplicate tests v1 APPLIED

Max Schillinger: 1
 regex: remove duplicate tests

 1 files changed, 0 insertions(+), 2 deletions(-)
#1278373 alpine.yml success
#1278374 freebsd.yml success
#1278375 netbsd.yml success
#1278376 openbsd.yml success
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~sircmpwn/hare-dev/patches/53949/mbox | git am -3
Learn more about email & git

[PATCH hare] regex: remove duplicate tests Export this patch

Signed-off-by: Max Schillinger <max@mxsr.de>
---
 regex/+test.ha | 2 --
 1 file changed, 2 deletions(-)

diff --git a/regex/+test.ha b/regex/+test.ha
index 19a10e81..2d53f2ba 100644
--- 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),
-- 
2.45.2
hare/patches: SUCCESS in 1m33s

[regex: remove duplicate tests][0] from [Max Schillinger][1]

[0]: https://lists.sr.ht/~sircmpwn/hare-dev/patches/53949
[1]: mailto:max@mxsr.de

✓ #1278373 SUCCESS hare/patches/alpine.yml  https://builds.sr.ht/~sircmpwn/job/1278373
✓ #1278374 SUCCESS hare/patches/freebsd.yml https://builds.sr.ht/~sircmpwn/job/1278374
✓ #1278375 SUCCESS hare/patches/netbsd.yml  https://builds.sr.ht/~sircmpwn/job/1278375
✓ #1278376 SUCCESS hare/patches/openbsd.yml https://builds.sr.ht/~sircmpwn/job/1278376
Huh, must have been a copy-paste error. Thanks!

to git@git.sr.ht:~sircmpwn/hare
  74719e1e..f07c16a2  master -> master