Fix typo in local variable name.

This commit is contained in:
Gary Gregory 2020-11-05 01:05:21 -05:00
parent 19d29f3418
commit 23af28ddaf
1 changed files with 2 additions and 2 deletions

View File

@ -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();