From 596add819a5c29a73b61d7e813dd93461a050765 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 16 Jul 2025 13:09:07 +0200 Subject: [PATCH] unit1307: use different letters to avoid triggering "ba" --- tests/unit/unit1307.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/unit1307.c b/tests/unit/unit1307.c index bd26ea07c4..0265ac30e0 100644 --- a/tests/unit/unit1307.c +++ b/tests/unit/unit1307.c @@ -146,8 +146,8 @@ static CURLcode test_unit1307(char *arg) { "[! ][ ]", " ", NOMATCH }, { "[! ][ ]", "a ", MATCH }, { "*[^a].t?t", "a.txt", NOMATCH }, - { "*[^a].t?t", "ba.txt", NOMATCH }, - { "*[^a].t?t", "ab.txt", MATCH }, + { "*[^a].t?t", "ca.txt", NOMATCH }, + { "*[^a].t?t", "ac.txt", MATCH }, { "*[^a]", "", NOMATCH }, { "[!\xFF]", "", NOMATCH|LINUX_FAIL}, { "[!\xFF]", "\xFF", NOMATCH|LINUX_FAIL|MAC_FAIL},