Skip to content

Commit 3baaf91

Browse files
committed
Fix test names
1 parent 315b8d7 commit 3baaf91

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/src/test/java/org/asynchttpclient/BasicHttpProxyToHttpTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public void tearDownGlobal() throws Exception {
115115
}
116116

117117
@Test
118-
public void nonPreemptyProxyAuthWithPlainHttpTarget() throws IOException, InterruptedException, ExecutionException {
118+
public void nonPreemptiveProxyAuthWithPlainHttpTarget() throws IOException, InterruptedException, ExecutionException {
119119
try (AsyncHttpClient client = asyncHttpClient()) {
120120
String targetUrl = "http://localhost:" + httpPort + "/foo/bar";
121121
Request request = get(targetUrl)//

client/src/test/java/org/asynchttpclient/BasicHttpProxyToHttpsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public void tearDownGlobal() throws Exception {
9292
}
9393

9494
@Test
95-
public void nonPreemptyProxyAuthWithHttpsTarget() throws IOException, InterruptedException, ExecutionException {
95+
public void nonPreemptiveProxyAuthWithHttpsTarget() throws IOException, InterruptedException, ExecutionException {
9696
try (AsyncHttpClient client = asyncHttpClient(config().setUseInsecureTrustManager(true))) {
9797
String targetUrl = "https://localhost:" + httpPort + "/foo/bar";
9898
Request request = get(targetUrl)//

0 commit comments

Comments
 (0)