Fix chapter recognition tests

This commit is contained in:
inorichi 2015-11-25 19:16:42 +01:00
parent ee7d76e775
commit 1d5e8e02d3

View File

@ -15,7 +15,7 @@ public class ChapterRecognitionTest {
Manga randomManga;
private Chapter createChapter(String title) {
Chapter chapter = new Chapter();
Chapter chapter = Chapter.create();
chapter.name = title;
return chapter;
}