This is an automated email from the ASF dual-hosted git repository.
reta pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/main by this push:
new 323bb90c58 Attempt to fix
org.apache.cxf.systest.mtom.MtomServerTest.testURLBasedAttachment test case on
Windows
323bb90c58 is described below
commit 323bb90c583293eb9c30eae9262cdf134bcb5efb
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
---
.../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");