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 4ac8e86 Fix failing test 4ac8e86 is described below commit 4ac8e86347a6a82133354312e7eb8c1aa09bb129 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 93cf639..f929d67 100644 --- a/test/org/apache/tomcat/websocket/pojo/TestEncodingDecoding.java +++ b/test/org/apache/tomcat/websocket/pojo/TestEncodingDecoding.java @@ -255,7 +255,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