JAVA-22043 Fixed formatting (#14386)

This commit is contained in:
Dhawal Kapil 2023-07-11 00:02:51 +05:30 committed by GitHub
parent 82532d661d
commit dcb08e1495
2 changed files with 37 additions and 38 deletions

View File

@ -28,7 +28,6 @@ import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
class HttpClientMultipartLiveTest extends GetRequestMockServer {
// No longer available
@ -44,7 +43,7 @@ class HttpClientMultipartLiveTest extends GetRequestMockServer {
@BeforeEach
public void before() {
post = new HttpPost(SERVER);
String URL = "http://localhost:"+serverPort+"/spring-mvc-java/stub/multipart";
String URL = "http://localhost:" + serverPort + "/spring-mvc-java/stub/multipart";
post = new HttpPost(URL);
}