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

dmitrygusev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/master by this push:
     new a076db5  Fixing illegal method names in groovy tests for Java 9 build
a076db5 is described below

commit a076db5ff7de69cab4adbb9a84050297927e7852
Author: Dmitry Gusev <[email protected]>
AuthorDate: Sun Jun 23 14:10:39 2019 +0300

    Fixing illegal method names in groovy tests for Java 9 build
---
 .../internal/services/ResponseCompressionAnalyzerTest.groovy          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/tapestry-core/src/test/groovy/org/apache/tapestry5/internal/services/ResponseCompressionAnalyzerTest.groovy
 
b/tapestry-core/src/test/groovy/org/apache/tapestry5/internal/services/ResponseCompressionAnalyzerTest.groovy
index 589a5db..d60af4a 100644
--- 
a/tapestry-core/src/test/groovy/org/apache/tapestry5/internal/services/ResponseCompressionAnalyzerTest.groovy
+++ 
b/tapestry-core/src/test/groovy/org/apache/tapestry5/internal/services/ResponseCompressionAnalyzerTest.groovy
@@ -10,7 +10,7 @@ import javax.servlet.http.HttpServletRequest
 class ResponseCompressionAnalyzerTest extends TestBase {
 
   @Test
-  void "HTTP/1.0 protocol disables gzip compression"() {
+  void "HTTP 1_0 protocol disables gzip compression"() {
 
     HttpServletRequest request = newMock(HttpServletRequest)
 
@@ -27,7 +27,7 @@ class ResponseCompressionAnalyzerTest extends TestBase {
 
   @Test
   //TAP5-2264
-  void "InternalConstants.SUPPRESS_COMPRESSION attribute disables gzip 
compression"() {
+  void "InternalConstants#SUPPRESS_COMPRESSION attribute disables gzip 
compression"() {
 
     HttpServletRequest request = newMock(HttpServletRequest)
 

Reply via email to