Skip to content

Commit

Permalink
fix(structuredProps) casing bug in StructuredPropertiesValidator (#10982
Browse files Browse the repository at this point in the history
)
  • Loading branch information
chriscollins3456 authored Jul 24, 2024
1 parent 4921967 commit 959d351
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ private static Optional<AspectValidationException> validateType(
throw new RuntimeException(e);
}
String allowedEntityName = getValueTypeId(typeUrn);
if (typeValue.getEntityType().equals(allowedEntityName)) {
if (typeValue.getEntityType().equalsIgnoreCase(allowedEntityName)) {
matchedAny = true;
}
}
Expand Down

0 comments on commit 959d351

Please sign in to comment.