You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ia...@apache.org on 2004/07/02 15:27:39 UTC

cvs commit: ws-axis/java/test/wsdl/interop4/groupG/mime/doc MimeDOCInteropTestCase.java

ias         2004/07/02 06:27:39

  Modified:    java/test/wsdl/interop4/groupG/mime/doc
                        MimeDOCInteropTestCase.java
  Log:
  Change "value" to "_value" to follow JAX-RPC 1.1 spec up.
  
  Revision  Changes    Path
  1.4       +1 -1      ws-axis/java/test/wsdl/interop4/groupG/mime/doc/MimeDOCInteropTestCase.java
  
  Index: MimeDOCInteropTestCase.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/test/wsdl/interop4/groupG/mime/doc/MimeDOCInteropTestCase.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MimeDOCInteropTestCase.java	13 Dec 2003 20:43:01 -0000	1.3
  +++ MimeDOCInteropTestCase.java	2 Jul 2004 13:27:39 -0000	1.4
  @@ -92,7 +92,7 @@
           test.wsdl.interop4.groupG.mime.doc.xsd.Binary output = null;
           output = binding.echoAttachmentAsBase64(input);
           // TBD - validate results
  -        assertTrue(Arrays.equals(input.getBytes(), output.getValue()));
  +        assertTrue(Arrays.equals(input.getBytes(), output.get_value()));
       }
   
       public void test4MimeDOCSoapPortEchoBase64AsAttachment() throws Exception {