diff options
Diffstat (limited to 'test/testescape.c')
-rw-r--r-- | test/testescape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testescape.c b/test/testescape.c index 6645227..bd6c072 100644 --- a/test/testescape.c +++ b/test/testescape.c @@ -172,7 +172,7 @@ static void test_escape(abts_case *tc, void *data) ABTS_PTR_EQUAL(tc, src, dest); src = "\xFF<>&\'\"Hello World"; - target = "ÿ<>&'"Hello World"; + target = "ÿ<>&'"Hello World"; dest = apr_pescape_entity(pool, src, 1); ABTS_STR_EQUAL(tc, target, dest); apr_escape_entity(NULL, src, APR_ESCAPE_STRING, 1, &len); |