Skip to content

Commit

Permalink
fix commit
Browse files Browse the repository at this point in the history
  • Loading branch information
James Powell committed Jan 24, 2025
1 parent fa6f28d commit e19cc2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/eventsourcing/component/EndToEndCT.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void testFlow() {

List<Object> membersByCuisine = response.jsonPath().getList("$");
assertThat(membersByCuisine, notNullValue());
assertThat(membersByCuisine, hasSize(greaterThan(99)));
assertThat(membersByCuisine, hasSize(greaterThan(0)));

Optional<LinkedHashMap<String, List<String>>> expectedCuisineType = membersByCuisine.stream()
.filter(item -> item instanceof LinkedHashMap)
Expand Down

0 comments on commit e19cc2d

Please sign in to comment.