Author: markt Date: Tue Dec 11 20:11:34 2018 New Revision: 1848709 URL: http://svn.apache.org/viewvc?rev=1848709&view=rev Log: Correct test names Patch provided by Tom Groot
Modified: tomcat/trunk/test/org/apache/catalina/valves/TestRemoteIpValve.java Modified: tomcat/trunk/test/org/apache/catalina/valves/TestRemoteIpValve.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/valves/TestRemoteIpValve.java?rev=1848709&r1=1848708&r2=1848709&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/catalina/valves/TestRemoteIpValve.java (original) +++ tomcat/trunk/test/org/apache/catalina/valves/TestRemoteIpValve.java Tue Dec 11 20:11:34 2018 @@ -694,7 +694,7 @@ public class TestRemoteIpValve { } @Test - public void testInvokeXforwardedProtoSaysMultipleForwardsWithLastBeingHttpForIncomingHttpsRequest() throws Exception { + public void testInvokeXforwardedProtoSaysMultipleForwardsWithLastBeingHttpForIncomingHttpRequest() throws Exception { performXForwardedProtoWithMultipleForwardsTest("https,http", false, false); } @@ -704,12 +704,12 @@ public class TestRemoteIpValve { } @Test - public void testInvokeXforwardedProtoSaysMultipleHttpForwardsForIncomingHttpsRequest() throws Exception { + public void testInvokeXforwardedProtoSaysMultipleHttpForwardsForIncomingHttpRequest() throws Exception { performXForwardedProtoWithMultipleForwardsTest("http,http", false, false); } @Test - public void testInvokeXforwardedProtoSaysInvalidValueForIncomingHttpsRequest() throws Exception { + public void testInvokeXforwardedProtoSaysInvalidValueForIncomingHttpRequest() throws Exception { performXForwardedProtoWithMultipleForwardsTest(",", false, false); } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org