Skip to content

Commit

Permalink
fixing provisioning tests
Browse files Browse the repository at this point in the history
  • Loading branch information
katkav committed Feb 22, 2016
1 parent 44eba35 commit 64c232a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -290,7 +290,7 @@ private void checkIfExist(Collection<Object> valuesToDelete, Set<Object> current
boolean found = false;
for (Object currentValue : currentValues) {
if (resource.isCaseIgnoreValues() && currentValue instanceof String && valueToDelete instanceof String) {
if (!StringUtils.equalsIgnoreCase((String)currentValue, (String)valueToDelete)) {
if (StringUtils.equalsIgnoreCase((String)currentValue, (String)valueToDelete)) {
found = true;
break;
}
Expand Down

0 comments on commit 64c232a

Please sign in to comment.