From c4ff64e4a534d7c89c769afc85bbfb202135ea3f Mon Sep 17 00:00:00 2001 From: Mihail Polivaha <68962645+Mihail2048@users.noreply.github.com> Date: Fri, 14 Apr 2023 18:50:02 +0300 Subject: [PATCH] BAEL-6278 rename IntegrationTest class to LiveTest (#13841) * misha2048 Retrying Requests using Apache HttpClient * BAEL-6278 rename IntegrationTest class to LiveTest --- ...yIntegrationTest.java => ApacheHttpClientRetryLiveTest.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename apache-httpclient4/src/test/java/com/baeldung/httpclient/retry/{ApacheHttpClientRetryIntegrationTest.java => ApacheHttpClientRetryLiveTest.java} (99%) diff --git a/apache-httpclient4/src/test/java/com/baeldung/httpclient/retry/ApacheHttpClientRetryIntegrationTest.java b/apache-httpclient4/src/test/java/com/baeldung/httpclient/retry/ApacheHttpClientRetryLiveTest.java similarity index 99% rename from apache-httpclient4/src/test/java/com/baeldung/httpclient/retry/ApacheHttpClientRetryIntegrationTest.java rename to apache-httpclient4/src/test/java/com/baeldung/httpclient/retry/ApacheHttpClientRetryLiveTest.java index cfb51f058a..3a8ff252c2 100644 --- a/apache-httpclient4/src/test/java/com/baeldung/httpclient/retry/ApacheHttpClientRetryIntegrationTest.java +++ b/apache-httpclient4/src/test/java/com/baeldung/httpclient/retry/ApacheHttpClientRetryLiveTest.java @@ -24,7 +24,7 @@ import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; -public class ApacheHttpClientRetryIntegrationTest { +public class ApacheHttpClientRetryLiveTest { private Integer requestCounter; private CloseableHttpClient httpClient;