dims 2002/10/02 17:42:26
Modified: java/test/wsdl/interop4/groupi Tag: interop4
Round4XSDTestTestCase.java
Log:
Force GMT on return calendar before checking if input/output are equal. Now testcase
work both with our endpoint and MSFT's endpoint.
Revision Changes Path
No revision
No revision
1.1.2.5 +1 -0
xml-axis/java/test/wsdl/interop4/groupi/Attic/Round4XSDTestTestCase.java
Index: Round4XSDTestTestCase.java
===================================================================
RCS file:
/home/cvs/xml-axis/java/test/wsdl/interop4/groupi/Attic/Round4XSDTestTestCase.java,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -u -r1.1.2.4 -r1.1.2.5
--- Round4XSDTestTestCase.java 3 Oct 2002 00:28:03 -0000 1.1.2.4
+++ Round4XSDTestTestCase.java 3 Oct 2002 00:42:26 -0000 1.1.2.5
@@ -139,6 +139,7 @@
input.setTimeZone(TimeZone.getTimeZone("GMT"));
java.util.Calendar value = null;
value = binding.echoDate(input);
+ value.setTimeZone(TimeZone.getTimeZone("GMT"));
assertTrue(input.equals(value));
}
catch (java.rmi.RemoteException re) {