This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new 5d854d7 Consistent test method naming 5d854d7 is described below commit 5d854d7589112effb0d291169cd87812cf5557d5 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