From c6aa3a2af9caf6b31c5901ea43a6dc37c9da310f Mon Sep 17 00:00:00 2001 From: cyian-1756 Date: Fri, 29 Jun 2018 23:04:13 -0400 Subject: [PATCH] Fixed DeviantartRipper unit tests --- .../ripme/tst/ripper/rippers/DeviantartRipperTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/com/rarchives/ripme/tst/ripper/rippers/DeviantartRipperTest.java b/src/test/java/com/rarchives/ripme/tst/ripper/rippers/DeviantartRipperTest.java index a3e6a9c8..f68d1db5 100644 --- a/src/test/java/com/rarchives/ripme/tst/ripper/rippers/DeviantartRipperTest.java +++ b/src/test/java/com/rarchives/ripme/tst/ripper/rippers/DeviantartRipperTest.java @@ -7,18 +7,18 @@ import com.rarchives.ripme.ripper.rippers.DeviantartRipper; public class DeviantartRipperTest extends RippersTest { public void testDeviantartAlbum() throws IOException { - DeviantartRipper ripper = new DeviantartRipper(new URL("http://airgee.deviantart.com/gallery/")); + DeviantartRipper ripper = new DeviantartRipper(new URL("https://www.deviantart.com/airgee/gallery/")); testRipper(ripper); } public void testDeviantartNSFWAlbum() throws IOException { // NSFW gallery - DeviantartRipper ripper = new DeviantartRipper(new URL("http://faterkcx.deviantart.com/gallery/")); + DeviantartRipper ripper = new DeviantartRipper(new URL("https://www.deviantart.com/faterkcx/gallery/")); testRipper(ripper); } public void testGetGID() throws IOException { - URL url = new URL("http://airgee.deviantart.com/gallery/"); + URL url = new URL("https://www.deviantart.com/airgee/gallery/"); DeviantartRipper ripper = new DeviantartRipper(url); assertEquals("airgee", ripper.getGID(url)); }