diff --git a/src/fr/devinsy/statoolinfos/checker/PropertyRule.java b/src/fr/devinsy/statoolinfos/checker/PropertyRule.java index 3596bbe..67fd001 100644 --- a/src/fr/devinsy/statoolinfos/checker/PropertyRule.java +++ b/src/fr/devinsy/statoolinfos/checker/PropertyRule.java @@ -69,8 +69,8 @@ public class PropertyRule */ public PropertyRule(final String label, final String pathRegex, final String valueRegex, final PropertyMode mode) { - this.pathPattern = Pattern.compile(pathRegex); - this.valuePattern = Pattern.compile(valueRegex); + this.pathPattern = Pattern.compile(pathRegex, Pattern.CASE_INSENSITIVE); + this.valuePattern = Pattern.compile(valueRegex, Pattern.CASE_INSENSITIVE); this.mode = mode; this.label = label; }