This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.6.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit ef3a5748290855774c8cb0a757c80c6a167c4ed0 Author: Andriy Redko <[email protected]> AuthorDate: Sat Jul 8 14:04:47 2023 -0400 Attempt to fix org.apache.cxf.systest.mtom.MtomServerTest.testURLBasedAttachment test case on Windows (cherry picked from commit 323bb90c583293eb9c30eae9262cdf134bcb5efb) --- .../src/test/java/org/apache/cxf/systest/mtom/MtomServerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systests/uncategorized/src/test/java/org/apache/cxf/systest/mtom/MtomServerTest.java b/systests/uncategorized/src/test/java/org/apache/cxf/systest/mtom/MtomServerTest.java index 6301970aa1..21fd4072e0 100644 --- a/systests/uncategorized/src/test/java/org/apache/cxf/systest/mtom/MtomServerTest.java +++ b/systests/uncategorized/src/test/java/org/apache/cxf/systest/mtom/MtomServerTest.java @@ -200,7 +200,7 @@ public class MtomServerTest extends AbstractBusClientServerTestBase { IOUtils.copy(inAtt.getDataHandler().getInputStream(), out); assertTrue("Wrong size: " + out.size() + "\n" + out.toString(), - out.size() > 970 && out.size() < 1020); + out.size() > 970 && out.size() < 1030); } unregisterServStatic("http://localhost:" + PORT2 + "/policy.xsd");
