This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push: new 947ecd0 Fix failing test 947ecd0 is described below commit 947ecd09011e6439828b5c2a1890209f94e51438 Author: Mark Thomas <ma...@apache.org> AuthorDate: Wed Jul 8 15:56:06 2020 +0100 Fix failing test --- test/org/apache/tomcat/websocket/pojo/TestEncodingDecoding.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/org/apache/tomcat/websocket/pojo/TestEncodingDecoding.java b/test/org/apache/tomcat/websocket/pojo/TestEncodingDecoding.java index 91b9034..f5c5e03 100644 --- a/test/org/apache/tomcat/websocket/pojo/TestEncodingDecoding.java +++ b/test/org/apache/tomcat/websocket/pojo/TestEncodingDecoding.java @@ -254,7 +254,7 @@ public class TestEncodingDecoding extends TomcatBaseTest { // Should not take very long int i = 0; while (i < WAIT_LOOPS) { - if (server.received.size() > 0 && client.received.size() > 0) { + if (server.received.size() > 0 && client.received.size() > 1) { break; } i++; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org