Test fixes

This commit is contained in:
dragonmacher 2025-08-21 14:25:45 -04:00
parent 34d5435740
commit bff95dc7c6
4 changed files with 11 additions and 7 deletions

View file

@ -77,7 +77,7 @@ public interface DropDownTextFieldDataModel<T> {
case STARTS_WITH:
return createStartsWithPattern(input, false, Pattern.CASE_INSENSITIVE);
case WILDCARD:
return createSearchPattern(input, false);
return createContainsPattern(input, true, Pattern.CASE_INSENSITIVE);
default:
throw new IllegalStateException("Cannot create pattern for mode: " + this);
}