You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2020/11/05 06:08:31 UTC

[httpcomponents-client] branch 4.5.x updated: Fix typo in local variable name.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch 4.5.x
in repository https://gitbox.apache.org/repos/asf/httpcomponents-client.git


The following commit(s) were added to refs/heads/4.5.x by this push:
     new 23af28d  Fix typo in local variable name.
23af28d is described below

commit 23af28ddaf49544ab8a7996f1a8bb508f6441828
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Nov 5 01:05:21 2020 -0500

    Fix typo in local variable name.
---
 .../http/impl/client/integration/TestConnectionAutoRelease.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/httpclient/src/test/java/org/apache/http/impl/client/integration/TestConnectionAutoRelease.java b/httpclient/src/test/java/org/apache/http/impl/client/integration/TestConnectionAutoRelease.java
index 63451d4..7936bc9 100644
--- a/httpclient/src/test/java/org/apache/http/impl/client/integration/TestConnectionAutoRelease.java
+++ b/httpclient/src/test/java/org/apache/http/impl/client/integration/TestConnectionAutoRelease.java
@@ -115,8 +115,8 @@ public class TestConnectionAutoRelease extends LocalServerTestBase {
 
         final HttpEntity e = response.getEntity();
         Assert.assertNotNull(e);
-        final ByteArrayOutputStream outsteam = new ByteArrayOutputStream();
-        e.writeTo(outsteam);
+        final ByteArrayOutputStream outstream = new ByteArrayOutputStream();
+        e.writeTo(outstream);
 
         // Expect one connection in the pool
         stats = this.connManager.getTotalStats();