You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2020/02/17 11:25:56 UTC

[tomcat] branch 7.0.x updated: 7.0.x doesn't have the Tomcat specific TRACE handling

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

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


The following commit(s) were added to refs/heads/7.0.x by this push:
     new 8c2f5c8  7.0.x doesn't have the Tomcat specific TRACE handling
8c2f5c8 is described below

commit 8c2f5c829ef64edfb5cfe7624aa7e9e3770e1ce7
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Mon Feb 17 11:25:41 2020 +0000

    7.0.x doesn't have the Tomcat specific TRACE handling
---
 test/javax/servlet/http/TestHttpServlet.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/javax/servlet/http/TestHttpServlet.java b/test/javax/servlet/http/TestHttpServlet.java
index 76bc92e..80593d5 100644
--- a/test/javax/servlet/http/TestHttpServlet.java
+++ b/test/javax/servlet/http/TestHttpServlet.java
@@ -160,13 +160,13 @@ public class TestHttpServlet extends TomcatBaseTest {
 
     @Test
     public void testDoOptions() throws Exception {
-        doTestDoOptions(new OptionsServlet(), "GET, HEAD, OPTIONS");
+        doTestDoOptions(new OptionsServlet(), "GET, HEAD, TRACE, OPTIONS");
     }
 
 
     @Test
     public void testDoOptionsSub() throws Exception {
-        doTestDoOptions(new OptionsServletSub(), "GET, HEAD, POST, OPTIONS");
+        doTestDoOptions(new OptionsServletSub(), "GET, HEAD, POST, TRACE, OPTIONS");
     }
 
 


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