You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bo...@apache.org on 2009/06/12 04:53:01 UTC

svn commit: r783969 - /apr/apr-util/branches/1.4.x/test/testxml.c

Author: bojan
Date: Fri Jun 12 02:53:01 2009
New Revision: 783969

URL: http://svn.apache.org/viewvc?rev=783969&view=rev
Log:
Use correct case for apr_assert_success.

Modified:
    apr/apr-util/branches/1.4.x/test/testxml.c

Modified: apr/apr-util/branches/1.4.x/test/testxml.c
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/test/testxml.c?rev=783969&r1=783968&r2=783969&view=diff
==============================================================================
--- apr/apr-util/branches/1.4.x/test/testxml.c (original)
+++ apr/apr-util/branches/1.4.x/test/testxml.c Fri Jun 12 02:53:01 2009
@@ -157,7 +157,7 @@
 
     rv = apr_file_open(&fd, "data/billion-laughs.xml", 
                        APR_FOPEN_READ, 0, p);
-    APR_ASSERT_SUCCESS(tc, "open billion-laughs.xml", rv);
+    apr_assert_success(tc, "open billion-laughs.xml", rv);
 
     rv = apr_xml_parse_file(p, &parser, &doc, fd, 2000);
     ABTS_TRUE(tc, rv != APR_SUCCESS);