Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
codingPF committed Oct 13, 2023
1 parent b805eb3 commit 4b36765
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ static Stream<Arguments> getTestArgumentForFilmlistsInDifferentFormats() {
public void testSaveAndImport(final FilmlistFormats format, final String filmlistPath,final String livestreamPath, final int expectedInitialSize, final int expectedAfterImport) {
CrawlerManager crawlerManagerForEachRun = createEmptyCrawlerManager();
final Path filmListFilePath = FileReader.getPath(filmlistPath);
final Path livesreamFilmListFilePath = FileReader.getPath(livestreamPath);
final Path livestreamFilmListFilePath = FileReader.getPath(livestreamPath);
crawlerManagerForEachRun.addMessageListener(this);
crawlerManagerForEachRun.importFilmlist(format, filmListFilePath.toAbsolutePath().toString());
//
assertThat(crawlerManagerForEachRun.getFilmlist().getFilms()).hasSize(expectedInitialSize);
//
crawlerManagerForEachRun.importLivestreamFilmlist(format, livesreamFilmListFilePath.toAbsolutePath().toString());
crawlerManagerForEachRun.importLivestreamFilmlist(format, livestreamFilmListFilePath.toAbsolutePath().toString());
//
assertThat(crawlerManagerForEachRun.getFilmlist().getFilms()).hasSize(expectedAfterImport);
//
Expand Down

0 comments on commit 4b36765

Please sign in to comment.