Fixing illegal method names in groovy tests for Java 9 build
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 @@
 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 @@
 
   @Test
   //TAP5-2264
-  void "InternalConstants.SUPPRESS_COMPRESSION attribute disables gzip compression"() {
+  void "InternalConstants#SUPPRESS_COMPRESSION attribute disables gzip compression"() {
 
     HttpServletRequest request = newMock(HttpServletRequest)