Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewBemis committed Jan 8, 2025
1 parent 8048319 commit ed03b48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ public void testSetup(TestInfo info) throws IOException {

@Test
@Transactional
public void testPopulateLanguageTexts(TestInfo info) throws IOException {
// BaseSeedPopulator.SetupStats setupStats = baseSeedPopulator.populate("");
public void testPopulateLanguageTexts(TestInfo info) {
baseSeedPopulator.populateLanguageTexts();
List<LanguageText> languageTexts = languageTextService.findAll();
Map<String, List<LanguageText>> languageTextsByLanguageCode = languageTexts.stream()
.collect(java.util.stream.Collectors.groupingBy(LanguageText::getLanguage));
Expand Down

0 comments on commit ed03b48

Please sign in to comment.