diff --git a/exercises/concept/gotta-snatch-em-all/src/test/java/GottaSnatchEmAllTest.java b/exercises/concept/gotta-snatch-em-all/src/test/java/GottaSnatchEmAllTest.java index d2466e8a4..12b9961fd 100644 --- a/exercises/concept/gotta-snatch-em-all/src/test/java/GottaSnatchEmAllTest.java +++ b/exercises/concept/gotta-snatch-em-all/src/test/java/GottaSnatchEmAllTest.java @@ -182,8 +182,8 @@ void testCommonCardsSingleCollection() { void testCommonCardsMultipleCollections() { List> collections = List.of( Set.of("Veevee", "Wigglycream", "Mayofried"), - Set.of("Gyros", "Wigglycream", "Shazam"), - Set.of("Cooltentbro", "Mayofried", "Wigglycream") + Set.of("Cooltentbro", "Mayofried", "Wigglycream"), + Set.of("Gyros", "Wigglycream", "Shazam") ); Set expected = Set.of("Wigglycream"); assertThat(GottaSnatchEmAll.commonCards(collections)).isEqualTo(expected);