diff --git a/domain/src/commonTest/kotlin/yokai/domain/chapter/services/ChapterRecognitionTest.kt b/domain/src/commonTest/kotlin/yokai/domain/chapter/services/ChapterRecognitionTest.kt index a44cadacd9..55298ca513 100644 --- a/domain/src/commonTest/kotlin/yokai/domain/chapter/services/ChapterRecognitionTest.kt +++ b/domain/src/commonTest/kotlin/yokai/domain/chapter/services/ChapterRecognitionTest.kt @@ -272,6 +272,6 @@ class ChapterRecognitionTest { } private fun assertChapter(mangaTitle: String, name: String, expected: Float) { - ChapterRecognition.parseChapterNumber(mangaTitle, name) shouldBe expected + ChapterRecognition.parseChapterNumber(name, mangaTitle) shouldBe expected } }