This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 228b5a0  Consistent test method naming
228b5a0 is described below

commit 228b5a07ebee97f72bd6c6c614191d342d6c062d
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Aug 13 19:52:38 2020 +0100

    Consistent test method naming
---
 test/org/apache/coyote/http2/TestHttp2Limits.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/org/apache/coyote/http2/TestHttp2Limits.java 
b/test/org/apache/coyote/http2/TestHttp2Limits.java
index a8f4458..97345a4 100644
--- a/test/org/apache/coyote/http2/TestHttp2Limits.java
+++ b/test/org/apache/coyote/http2/TestHttp2Limits.java
@@ -415,21 +415,21 @@ public class TestHttp2Limits extends Http2TestBase {
 
 
     @Test
-    public void doTestPostWithTrailerHeadersDefaultLimit() throws Exception{
+    public void testPostWithTrailerHeadersDefaultLimit() throws Exception{
         doTestPostWithTrailerHeaders(Constants.DEFAULT_MAX_TRAILER_COUNT,
                 Constants.DEFAULT_MAX_TRAILER_SIZE, FailureMode.NONE);
     }
 
 
     @Test
-    public void doTestPostWithTrailerHeadersCount0() throws Exception{
+    public void testPostWithTrailerHeadersCount0() throws Exception{
         doTestPostWithTrailerHeaders(0, Constants.DEFAULT_MAX_TRAILER_SIZE,
                 FailureMode.STREAM_RESET);
     }
 
 
     @Test
-    public void doTestPostWithTrailerHeadersSize0() throws Exception{
+    public void testPostWithTrailerHeadersSize0() throws Exception{
         doTestPostWithTrailerHeaders(Constants.DEFAULT_MAX_TRAILER_COUNT, 0,
                 FailureMode.CONNECTION_RESET);
     }


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

Reply via email to