1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 15:24:51 +02:00

Merge pull request #1141 from cyian-1756/hentai-image-unittest-fixes

Mark hentaiImage test as flaky
This commit is contained in:
cyian-1756
2018-12-29 06:45:39 -05:00
committed by GitHub

View File

@@ -4,10 +4,15 @@ import java.io.IOException;
import java.net.URL;
import com.rarchives.ripme.ripper.rippers.HentaiimageRipper;
import com.rarchives.ripme.utils.Utils;
public class HentaiimageRipperTest extends RippersTest {
public void testHentaifoundryRip() throws IOException {
HentaiimageRipper ripper = new HentaiimageRipper(new URL("https://hentai-image.com/image/afrobull-gerudo-ongoing-12/"));
testRipper(ripper);
if (Utils.getConfigBoolean("test.run_flaky_tests", false)) {
HentaiimageRipper ripper = new HentaiimageRipper(new URL("https://hentai-image.com/image/afrobull-gerudo-ongoing-12/"));
testRipper(ripper);
}
}
}