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();
|
||||
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();
|
||||
|
|
Loading…
Reference in New Issue