You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2014/06/26 17:51:32 UTC

svn commit: r1605828 - /jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestHTTPMirrorThread.java

Author: sebb
Date: Thu Jun 26 15:51:32 2014
New Revision: 1605828

URL: http://svn.apache.org/r1605828
Log:
Drop debug

Modified:
    jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestHTTPMirrorThread.java

Modified: jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestHTTPMirrorThread.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestHTTPMirrorThread.java?rev=1605828&r1=1605827&r2=1605828&view=diff
==============================================================================
--- jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestHTTPMirrorThread.java (original)
+++ jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestHTTPMirrorThread.java Thu Jun 26 15:51:32 2014
@@ -347,7 +347,6 @@ public class TestHTTPMirrorThread extend
 
     public void testQueryStatus() throws Exception {
         URL url = new URI("http",null,"localhost",HTTP_SERVER_PORT,"/path","status=303 See Other",null).toURL();
-        System.err.println(url);
         HttpURLConnection conn = (HttpURLConnection) url.openConnection();
         conn.connect();
         assertEquals(303, conn.getResponseCode());
@@ -356,7 +355,6 @@ public class TestHTTPMirrorThread extend
 
     public void testQueryRedirect() throws Exception {
         URL url = new URI("http",null,"localhost",HTTP_SERVER_PORT,"/path","redirect=/a/b/c/d?q",null).toURL();
-        System.err.println(url);
         HttpURLConnection conn = (HttpURLConnection) url.openConnection();
         conn.setInstanceFollowRedirects(false);
         conn.connect();