You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-commits@axis.apache.org by sh...@apache.org on 2010/04/06 13:03:58 UTC

svn commit: r931088 - /axis/axis2/c/core/trunk/axiom/test/util/axiom_util_test.c

Author: shankar
Date: Tue Apr  6 11:03:58 2010
New Revision: 931088

URL: http://svn.apache.org/viewvc?rev=931088&view=rev
Log:
fixing testcase compilation issues

Modified:
    axis/axis2/c/core/trunk/axiom/test/util/axiom_util_test.c

Modified: axis/axis2/c/core/trunk/axiom/test/util/axiom_util_test.c
URL: http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/axiom/test/util/axiom_util_test.c?rev=931088&r1=931087&r2=931088&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/axiom/test/util/axiom_util_test.c (original)
+++ axis/axis2/c/core/trunk/axiom/test/util/axiom_util_test.c Tue Apr  6 11:03:58 2010
@@ -117,9 +117,9 @@ axis2_status_t build_and_serialize_om(ax
     child = axiom_node_get_last_child(node, env); 
     axiom_util_new_document(env,uri1);
     printf("\nmy_ele = ");
-    printf("%s\n ",axiom_element_to_string(my_ele,env,child));
+    printf("%s\n ",axiom_node_to_string(child, env));
     first_element =  axiom_util_get_first_child_element(my_ele,env,child,&child);
-    printf("The first element = %s\n",axiom_element_to_string(first_element,env,node));
+    printf("The first element = %s\n",axiom_node_to_string(node, env));
     last_element = axiom_util_get_last_child_element(my_ele,env,root_node,&child);
     localname = axiom_element_get_localname(my_ele,env); 
     localname_last_child = axiom_util_get_last_child_element_with_localname(my_ele,env,root_node,localname,&child);       
@@ -141,7 +141,7 @@ axis2_status_t build_and_serialize_om(ax
     axiom_util_get_child_node_text(node,env);
     node_namespace_uri = axiom_util_get_node_namespace_uri(node,env);
     child_element =  axiom_util_get_child_elements(my_ele,env,node);
-    printf("%s\n",axiom_element_to_string(localname_attr_next_sibling,env,node));
+    printf("%s\n",axiom_node_to_string(node, env));
     printf("%s\n","test is SUCCESS");
     return AXIS2_SUCCESS;
 }