diff --git a/src/fr/devinsy/statoolinfos/checker/PropertyRule.java b/src/fr/devinsy/statoolinfos/checker/PropertyRule.java index a949122..f212e44 100644 --- a/src/fr/devinsy/statoolinfos/checker/PropertyRule.java +++ b/src/fr/devinsy/statoolinfos/checker/PropertyRule.java @@ -21,6 +21,8 @@ package fr.devinsy.statoolinfos.checker; import java.util.regex.Matcher; import java.util.regex.Pattern; +import org.apache.commons.lang3.StringUtils; + /** * The Class PropertyRule. */ @@ -62,7 +64,7 @@ public class PropertyRule { boolean result; - Matcher matcher = this.pathPattern.matcher(value); + Matcher matcher = this.pathPattern.matcher(StringUtils.toRootLowerCase(value)); result = matcher.matches(); //