Browse Source

Fix chapter recognition tests

inorichi 9 years ago
parent
commit
1d5e8e02d3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/src/test/java/eu/kanade/mangafeed/ChapterRecognitionTest.java

+ 1 - 1
app/src/test/java/eu/kanade/mangafeed/ChapterRecognitionTest.java

@@ -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;
     }