1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-26 07:14:38 +02:00

Mark hentaiImage test as flaky

This commit is contained in:
cyian-1756
2018-12-29 06:34:18 -05:00
parent 2558414b1c
commit 8b90e15c61

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