diff --git a/src/test/java/com/github/underscore/LodashTest.java b/src/test/java/com/github/underscore/LodashTest.java index 43b8720c..47dd7638 100644 --- a/src/test/java/com/github/underscore/LodashTest.java +++ b/src/test/java/com/github/underscore/LodashTest.java @@ -687,15 +687,14 @@ void fetchResponseBlob() { @Test void fetchGetHttps() { - U.FetchResponse result = U.fetch("https://api.lob.com/v1/addresses"); + U.FetchResponse result = + U.fetch("https://support.oneskyapp.com/hc/en-us/article_attachments/202761627/example_1.json"); assertEquals( "{\n" - + " \"error\": {\n" - + " \"message\": \"Missing authentication\",\n" - + " \"status_code\": 401,\n" - + " \"code\": \"unauthorized\"\n" - + " }\n" - + "}", + + " \"fruit\": \"Apple\",\n" + + " \"size\": \"Large\",\n" + + " \"color\": \"Red\"\n" + + "}", result.text()); }