Skip to content

Commit

Permalink
Fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
dqunbp committed Sep 27, 2023
1 parent b47f366 commit bbfbf9f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public void eventListDtoTestEpisodeCount() {
//1. with 0 episodes
event.setEpisodes(episodes);
EventListDto dto = EventListEventDtoConverter.convert(event);
assertEquals(dte.getEpisodeCount(), 0);
assertEquals(dto.getEpisodeCount(), 0);

//2. with 2 episodes
FeedEpisode episode1 = new FeedEpisode();
Expand All @@ -209,6 +209,6 @@ public void eventListDtoTestEpisodeCount() {
episodes.add(episode2);
event.setEpisodes(episodes);
dto = EventListEventDtoConverter.convert(event);
assertEquals(dte.getEpisodeCount(), 2);
assertEquals(dto.getEpisodeCount(), 2);
}
}

0 comments on commit bbfbf9f

Please sign in to comment.