Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
olevitt committed Jan 30, 2024
1 parent 344269c commit 562dbe8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void loadMaintainers() {
catalogLoader.updateCatalog(cw);
List<List<Chart.Maintainer>> maintainers =
cw.getCatalog().getEntries().entrySet().stream()
.map(entry -> entry.getValue())
.map(entry -> entry.getValue().stream().findFirst().get().getMaintainers())
.collect(Collectors.toList());
assertThat(
"Maintainers have been loaded",
Expand Down

0 comments on commit 562dbe8

Please sign in to comment.