This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new 8e99e1c8ab Better debugging for test failures
8e99e1c8ab is described below
commit 8e99e1c8ab280621945cb3dc557576384cf2c723
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 bb4f5c4430..c38168d1a3 100644
--- a/test/org/apache/coyote/http11/filters/TestChunkedInputFilter.java
+++ b/test/org/apache/coyote/http11/filters/TestChunkedInputFilter.java
@@ -327,9 +327,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]