diff --git a/src/main/java/com/rarchives/ripme/ripper/rippers/CheveretoRipper.java b/src/main/java/com/rarchives/ripme/ripper/rippers/CheveretoRipper.java index 28018ed5e..8bd67c5f2 100644 --- a/src/main/java/com/rarchives/ripme/ripper/rippers/CheveretoRipper.java +++ b/src/main/java/com/rarchives/ripme/ripper/rippers/CheveretoRipper.java @@ -34,7 +34,7 @@ public CheveretoRipper(URL url) throws IOException { super(url); } - private static List explicit_domains = Arrays.asList("tag-fox.com", "kenzato.uk"); + private static List explicit_domains = Arrays.asList("kenzato.uk"); @Override public String getHost() { @@ -90,7 +90,6 @@ public Document getFirstPage() throws IOException { @Override public Document getNextPage(Document doc) throws IOException { // Find next page - String nextUrl = ""; // We use comic-nav-next to the find the next page Element elem = doc.select("li.pagination-next > a").first(); if (elem == null) { diff --git a/src/test/java/com/rarchives/ripme/tst/ripper/rippers/CheveretoRipperTest.java b/src/test/java/com/rarchives/ripme/tst/ripper/rippers/CheveretoRipperTest.java index 6d893527d..6d51a3e6b 100644 --- a/src/test/java/com/rarchives/ripme/tst/ripper/rippers/CheveretoRipperTest.java +++ b/src/test/java/com/rarchives/ripme/tst/ripper/rippers/CheveretoRipperTest.java @@ -4,21 +4,20 @@ import java.net.URI; import java.net.URISyntaxException; -import com.rarchives.ripme.ripper.rippers.CheveretoRipper; -import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; +import com.rarchives.ripme.ripper.rippers.CheveretoRipper; + public class CheveretoRipperTest extends RippersTest { @Test - @Tag("flaky") - public void testTagFox() throws IOException, URISyntaxException { - CheveretoRipper ripper = new CheveretoRipper(new URI("http://tag-fox.com/album/Thjb").toURL()); + public void testSubdirAlbum1() throws IOException, URISyntaxException { + CheveretoRipper ripper = new CheveretoRipper(new URI("https://kenzato.uk/booru/album/TnEc").toURL()); testRipper(ripper); } + @Test - @Tag("flaky") - public void testSubdirAlbum() throws IOException, URISyntaxException { - CheveretoRipper ripper = new CheveretoRipper(new URI("https://kenzato.uk/booru/album/TnEc").toURL()); + public void testSubdirAlbum2() throws IOException, URISyntaxException { + CheveretoRipper ripper = new CheveretoRipper(new URI("https://kenzato.uk/booru/album/XWdIp").toURL()); testRipper(ripper); } }