We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6c9520 commit c1653b7Copy full SHA for c1653b7
src/test/java/com/github/underscore/LodashTest.java
@@ -687,15 +687,14 @@ void fetchResponseBlob() {
687
688
@Test
689
void fetchGetHttps() {
690
- U.FetchResponse result = U.fetch("https://api.lob.com/v1/addresses");
+ U.FetchResponse result =
691
+ U.fetch("https://support.oneskyapp.com/hc/en-us/article_attachments/202761627/example_1.json");
692
assertEquals(
693
"{\n"
- + " \"error\": {\n"
694
- + " \"message\": \"Missing authentication\",\n"
695
- + " \"status_code\": 401,\n"
696
- + " \"code\": \"unauthorized\"\n"
697
- + " }\n"
698
- + "}",
+ + " \"fruit\": \"Apple\",\n"
+ + " \"size\": \"Large\",\n"
+ + " \"color\": \"Red\"\n"
+ + "}",
699
result.text());
700
}
701
0 commit comments