Skip to content

Commit 818e524

Browse files
committed
Formatted HypnohubRipperTest
1 parent 69c903c commit 818e524

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/test/java/com/rarchives/ripme/tst/ripper/rippers/HypnohubRipperTest.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,33 @@
55
import java.net.URISyntaxException;
66
import java.net.URL;
77

8-
import com.rarchives.ripme.ripper.rippers.HypnohubRipper;
98
import org.junit.jupiter.api.Assertions;
109
import org.junit.jupiter.api.Disabled;
1110
import org.junit.jupiter.api.Test;
1211

12+
import com.rarchives.ripme.ripper.rippers.HypnohubRipper;
13+
1314
public class HypnohubRipperTest extends RippersTest {
1415
@Test
15-
@Disabled("wants a hunman")
16+
@Disabled("wants a human")
1617
public void testRip() throws IOException, URISyntaxException {
1718
URL poolURL = new URI("http://hypnohub.net/pool/show/2303").toURL();
18-
URL postURL = new URI("http://hypnohub.net/post/show/63464/black_hair-bracelet-collar-corruption-female_only-").toURL();
19+
URL postURL = new URI("http://hypnohub.net/post/show/63464/black_hair-bracelet-collar-corruption-female_only-")
20+
.toURL();
1921
HypnohubRipper ripper = new HypnohubRipper(poolURL);
2022
testRipper(ripper);
2123
ripper = new HypnohubRipper(postURL);
2224
testRipper(ripper);
2325
}
26+
2427
@Test
2528
public void testGetGID() throws IOException, URISyntaxException {
2629
URL poolURL = new URI("http://hypnohub.net/pool/show/2303").toURL();
2730
HypnohubRipper ripper = new HypnohubRipper(poolURL);
2831
Assertions.assertEquals("2303", ripper.getGID(poolURL));
2932

30-
URL postURL = new URI("http://hypnohub.net/post/show/63464/black_hair-bracelet-collar-corruption-female_only-").toURL();
33+
URL postURL = new URI("http://hypnohub.net/post/show/63464/black_hair-bracelet-collar-corruption-female_only-")
34+
.toURL();
3135
Assertions.assertEquals("63464_black_hair-bracelet-collar-corruption-female_only-", ripper.getGID(postURL));
3236
}
3337
}

0 commit comments

Comments
 (0)