Author: kkolinko Date: Thu Oct 23 22:30:34 2014 New Revision: 1633974 URL: http://svn.apache.org/r1633974 Log: Followup to r1633936: increment the correct variable. Thanks to Christopher Schultz for noting.
Modified: tomcat/trunk/test/org/apache/catalina/connector/TestCoyoteAdapter.java Modified: tomcat/trunk/test/org/apache/catalina/connector/TestCoyoteAdapter.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/connector/TestCoyoteAdapter.java?rev=1633974&r1=1633973&r2=1633974&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/catalina/connector/TestCoyoteAdapter.java (original) +++ tomcat/trunk/test/org/apache/catalina/connector/TestCoyoteAdapter.java Thu Oct 23 22:30:34 2014 @@ -364,7 +364,7 @@ public class TestCoyoteAdapter extends T // because the client has gone away). In some cases // there may be a large (ish) buffer to fill before // the write fails. - for (int j = 0 ; j < 8; i++) { + for (int j = 0 ; j < 8; j++) { os.write(BYTES_8K); } os.flush(); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org