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

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


The following commit(s) were added to refs/heads/11.0.x by this push:
     new 44fcec4afd Better debugging for test failures
44fcec4afd is described below

commit 44fcec4afdfbf40a32b4bc74986623dc3f4489cc
Author: Mark Thomas <[email protected]>
AuthorDate: Wed Mar 11 08:05:32 2026 +0000

    Better debugging for test failures
---
 test/org/apache/coyote/http11/filters/TestChunkedInputFilter.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/org/apache/coyote/http11/filters/TestChunkedInputFilter.java 
b/test/org/apache/coyote/http11/filters/TestChunkedInputFilter.java
index d4f11b5b98..a35773bb23 100644
--- a/test/org/apache/coyote/http11/filters/TestChunkedInputFilter.java
+++ b/test/org/apache/coyote/http11/filters/TestChunkedInputFilter.java
@@ -326,9 +326,9 @@ public class TestChunkedInputFilter extends TomcatBaseTest {
         client.processRequest();
 
         if (ok) {
-            Assert.assertTrue(client.isResponse200());
+            Assert.assertTrue(client.getResponseLine(), 
client.isResponse200());
         } else {
-            Assert.assertTrue(client.isResponse500());
+            Assert.assertTrue(client.getResponseLine(), 
client.isResponse500());
         }
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to