Author: kkolinko
Date: Tue May 27 12:29:00 2014
New Revision: 1597761

URL: http://svn.apache.org/r1597761
Log:
Discern the first and the second requests in the test case.
It is merge of r1597759 from tomcat/trunk.

Modified:
    tomcat/tc7.0.x/trunk/   (props changed)
    
tomcat/tc7.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java

Propchange: tomcat/tc7.0.x/trunk/
------------------------------------------------------------------------------
  Merged /tomcat/trunk:r1597759

Modified: 
tomcat/tc7.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java?rev=1597761&r1=1597760&r2=1597761&view=diff
==============================================================================
--- 
tomcat/tc7.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java
 (original)
+++ 
tomcat/tc7.0.x/trunk/test/org/apache/coyote/http11/TestAbstractHttp11Processor.java
 Tue May 27 12:29:00 2014
@@ -429,7 +429,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" +
@@ -440,7 +440,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-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to