-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -146,10 +146,10 @@ final void testEnum(){ | |
assertEquals(MangaPublishStatus.Unknown, MangaPublishStatus.asEnum("?")); | ||
assertEquals(MangaType.Unknown, MangaType.asEnum("?")); | ||
|
||
assumeTrue(MangaPublishStatus.OnHiatus == mal.getManga(2).getStatus(), "Test will fail when status is not hiatus"); | ||
|
||
for(final RelatedManga relatedManga : mal.getManga(112589).getRelatedManga()) | ||
assertNotEquals(RelationType.Unknown, relatedManga.getRelationType(), "Unknown type: " + relatedManga.getRawRelationType()); | ||
|
||
assumeTrue(MangaPublishStatus.OnHiatus == mal.getManga(2).getStatus(), "Test will fail when status is not hiatus"); | ||
Check notice on line 152 in src/test/java/dev/katsute/mal4j/MangaTests/TestManga.java GitHub Actions / MyAnimeList CI [Client] (Java 8)💤 dev/katsute/mal4j/MangaTests/TestManga testEnum :
Check notice on line 152 in src/test/java/dev/katsute/mal4j/MangaTests/TestManga.java GitHub Actions / MyAnimeList CI [Client] (Java 11)💤 dev/katsute/mal4j/MangaTests/TestManga testEnum :
Check notice on line 152 in src/test/java/dev/katsute/mal4j/MangaTests/TestManga.java GitHub Actions / MyAnimeList CI [Client] (Java 17)💤 dev/katsute/mal4j/MangaTests/TestManga testEnum :
|
||
} | ||
|
||
@Test | ||
|