Skip to content

Commit

Permalink
vision: relax another case comparison in vision (labels). (#1328)
Browse files Browse the repository at this point in the history
Missed this as I was focused on the detect samples, and missed this
additional failure in labeling.
  • Loading branch information
shollyman authored and dzlier-gcp committed Feb 6, 2019
1 parent d59c3a2 commit be23196
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class LabelAppIT {

ImmutableSet.Builder<String> builder = ImmutableSet.builder();
for (EntityAnnotation label : labels) {
builder.add(label.getDescription());
builder.add(label.getDescription().toLowerCase());
}
ImmutableSet<String> descriptions = builder.build();

Expand Down

0 comments on commit be23196

Please sign in to comment.