Remove reduntent unit test

This commit is contained in:
cyian-1756 2017-11-23 01:11:05 -05:00
parent 776cf522f4
commit 6114604152
2 changed files with 1 additions and 14 deletions

View File

@ -1,13 +0,0 @@
package com.rarchives.ripme.tst.ripper.rippers;
import java.io.IOException;
import java.net.URL;
import com.rarchives.ripme.ripper.rippers.TapasticRipper;
public class TapasRipperTest extends RippersTest {
public void testTapasRipperAlbum() throws IOException {
TapasticRipper ripper = new TapasticRipper(new URL("https://tapas.io/series/tsiwbakd-comic"));
testRipper(ripper);
}
}

View File

@ -7,7 +7,7 @@ import com.rarchives.ripme.ripper.rippers.TapasticRipper;
public class TapasticRipperTest extends RippersTest {
public void testTapasticRip() throws IOException {
TapasticRipper ripper = new TapasticRipper(new URL("http://tapastic.com/episode/2139"));
TapasticRipper ripper = new TapasticRipper(new URL("https://tapas.io/series/tsiwbakd-comic"));
testRipper(ripper);
}
}