Skip to content

Commit 13adcc1

Browse files
committed
fix test
1 parent 29c2f6f commit 13adcc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

springboot-starter/src/test/java/com/codingapi/springboot/framework/utils/TrustAnyHttpClientFactoryTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class TrustAnyHttpClientFactoryTest {
1313
void createTrustAnyHttpClient() {
1414
ClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory(TrustAnyHttpClientFactory.createTrustAnyHttpClient());
1515
RestTemplate restTemplate = new RestTemplate(factory);
16-
String response = restTemplate.getForObject("https://github.com",String.class);
16+
String response = restTemplate.getForObject("https://www.baidu.com",String.class);
1717
assertNotNull(response);
1818
}
1919
}

0 commit comments

Comments
 (0)