Skip to content

Commit 466acd6

Browse files
author
Stephane Landelle
committed
Fix typos
1 parent 1a551e3 commit 466acd6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/test/java/com/ning/http/client/async/BasicAuthTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ public AbstractHandler configureHandler() throws Exception {
474474
}
475475

476476
@Test(groups = { "standalone", "default_provider" })
477-
public void StringBuilderBodyConsumerTest() throws Throwable {
477+
public void stringBuilderBodyConsumerTest() throws Throwable {
478478
SimpleAsyncHttpClient client = new SimpleAsyncHttpClient.Builder().setRealmPrincipal(user).setRealmPassword(admin).setUrl(getTargetUrl()).setHeader("Content-Type", "text/html").build();
479479
try {
480480
StringBuilder s = new StringBuilder();

src/test/java/com/ning/http/client/async/SimpleAsyncHttpClientTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public abstract class SimpleAsyncHttpClientTest extends AbstractBasicTest {
4040
private final static String MY_MESSAGE = "my message";
4141

4242
@Test(groups = { "standalone", "default_provider" })
43-
public void inpuStreamBodyConsumerTest() throws Throwable {
43+
public void inputStreamBodyConsumerTest() throws Throwable {
4444

4545
SimpleAsyncHttpClient client = new SimpleAsyncHttpClient.Builder().setIdleConnectionInPoolTimeoutInMs(100).setMaximumConnectionsTotal(50).setRequestTimeoutInMs(5 * 60 * 1000).setUrl(getTargetUrl()).setHeader("Content-Type", "text/html").build();
4646
try {
@@ -56,7 +56,7 @@ public void inpuStreamBodyConsumerTest() throws Throwable {
5656
}
5757

5858
@Test(groups = { "standalone", "default_provider" })
59-
public void StringBuilderBodyConsumerTest() throws Throwable {
59+
public void stringBuilderBodyConsumerTest() throws Throwable {
6060

6161
SimpleAsyncHttpClient client = new SimpleAsyncHttpClient.Builder().setIdleConnectionInPoolTimeoutInMs(100).setMaximumConnectionsTotal(50).setRequestTimeoutInMs(5 * 60 * 1000).setUrl(getTargetUrl()).setHeader("Content-Type", "text/html").build();
6262
try {
@@ -73,7 +73,7 @@ public void StringBuilderBodyConsumerTest() throws Throwable {
7373
}
7474

7575
@Test(groups = { "standalone", "default_provider" })
76-
public void ByteArrayOutputStreamBodyConsumerTest() throws Throwable {
76+
public void byteArrayOutputStreamBodyConsumerTest() throws Throwable {
7777

7878
SimpleAsyncHttpClient client = new SimpleAsyncHttpClient.Builder().setIdleConnectionInPoolTimeoutInMs(100).setMaximumConnectionsTotal(50).setRequestTimeoutInMs(5 * 60 * 1000).setUrl(getTargetUrl()).setHeader("Content-Type", "text/html").build();
7979
try {
@@ -90,7 +90,7 @@ public void ByteArrayOutputStreamBodyConsumerTest() throws Throwable {
9090
}
9191

9292
@Test(groups = { "standalone", "default_provider" })
93-
public void RequestByteArrayOutputStreamBodyConsumerTest() throws Throwable {
93+
public void requestByteArrayOutputStreamBodyConsumerTest() throws Throwable {
9494

9595
SimpleAsyncHttpClient client = new SimpleAsyncHttpClient.Builder().setUrl(getTargetUrl()).build();
9696
try {

0 commit comments

Comments
 (0)