summaryrefslogtreecommitdiff
path: root/test/testtable.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testtable.c')
-rw-r--r--test/testtable.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/testtable.c b/test/testtable.c
index 0a9960f12..c0eda9c02 100644
--- a/test/testtable.c
+++ b/test/testtable.c
@@ -160,7 +160,7 @@ static void table_overlap(abts_case *tc, void *data)
apr_table_addn(t2, "b", "2.");
apr_table_addn(t2, "f", "6");
apr_table_overlap(t1, t2, APR_OVERLAP_TABLES_SET);
-
+
ABTS_INT_EQUAL(tc, 7, apr_table_elts(t1)->nelts);
val = apr_table_get(t1, "a");
ABTS_STR_EQUAL(tc, "1", val);
@@ -189,11 +189,11 @@ static void table_overlap2(abts_case *tc, void *data)
t2 = apr_table_make(p, 1);
apr_table_addn(t1, "t1", "one");
apr_table_addn(t2, "t2", "two");
-
+
apr_table_overlap(t1, t2, APR_OVERLAP_TABLES_SET);
-
+
ABTS_INT_EQUAL(tc, 2, apr_table_elts(t1)->nelts);
-
+
ABTS_STR_EQUAL(tc, "one", apr_table_get(t1, "t1"));
ABTS_STR_EQUAL(tc, "two", apr_table_get(t1, "t2"));