You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2014/05/27 14:25:57 UTC

svn commit: r1597759 - /tomcat/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java

Author: kkolinko
Date: Tue May 27 12:25:57 2014
New Revision: 1597759

URL: http://svn.apache.org/r1597759
Log:
Discern the first and the second requests in the test case.

Modified:
    tomcat/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java

Modified: tomcat/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java?rev=1597759&r1=1597758&r2=1597759&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java (original)
+++ tomcat/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java Tue May 27 12:25:57 2014
@@ -427,7 +427,7 @@ public class TestAbstractHttp11Processor
 
         tomcat.start();
 
-        String request1 = "GET /async HTTP/1.1\r\n" +
+        String request1 = "GET /async?1 HTTP/1.1\r\n" +
                 "Host: localhost:" + getPort() + "\r\n" +
                 "Connection: keep-alive\r\n" +
                 "Cache-Control: max-age=0\r\n" +
@@ -438,7 +438,7 @@ public class TestAbstractHttp11Processor
                 "Cookie: something.that.should.not.leak=true\r\n" +
                 "\r\n";
 
-        String request2 = "GET /async HTTP/1.1\r\n" +
+        String request2 = "GET /async?2 HTTP/1.1\r\n" +
                 "Host: localhost:" + getPort() + "\r\n" +
                 "Connection: keep-alive\r\n" +
                 "Cache-Control: max-age=0\r\n" +



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org