Fix typo in local variable name.
This commit is contained in:
parent
19d29f3418
commit
23af28ddaf
|
@ -115,8 +115,8 @@ public class TestConnectionAutoRelease extends LocalServerTestBase {
|
||||||
|
|
||||||
final HttpEntity e = response.getEntity();
|
final HttpEntity e = response.getEntity();
|
||||||
Assert.assertNotNull(e);
|
Assert.assertNotNull(e);
|
||||||
final ByteArrayOutputStream outsteam = new ByteArrayOutputStream();
|
final ByteArrayOutputStream outstream = new ByteArrayOutputStream();
|
||||||
e.writeTo(outsteam);
|
e.writeTo(outstream);
|
||||||
|
|
||||||
// Expect one connection in the pool
|
// Expect one connection in the pool
|
||||||
stats = this.connManager.getTotalStats();
|
stats = this.connManager.getTotalStats();
|
||||||
|
|
Loading…
Reference in New Issue