summaryrefslogtreecommitdiff
path: root/test/testutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testutil.c')
-rw-r--r--test/testutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testutil.c b/test/testutil.c
index 2974709cf..43835c152 100644
--- a/test/testutil.c
+++ b/test/testutil.c
@@ -25,14 +25,14 @@ apr_pool_t *p;
void apr_assert_success(abts_case* tc, const char* context, apr_status_t rv)
{
if (rv == APR_ENOTIMPL) {
- abts_not_impl(tc, context);
+ ABTS_NOT_IMPL(tc, context);
}
if (rv != APR_SUCCESS) {
char buf[STRING_MAX], ebuf[128];
sprintf(buf, "%s (%d): %s\n", context, rv,
apr_strerror(rv, ebuf, sizeof ebuf));
- abts_fail(tc, buf);
+ ABTS_FAIL(tc, buf);
}
}