summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/testskiplist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testskiplist.c b/test/testskiplist.c
index 3f89c1b11..01bd441c1 100644
--- a/test/testskiplist.c
+++ b/test/testskiplist.c
@@ -362,7 +362,7 @@ static void skiplist_test(abts_case *tc, void *data) {
ABTS_INT_EQUAL(tc, val2->b, 2);
val2 = apr_skiplist_pop(list2, NULL);
ABTS_INT_EQUAL(tc, val2->a, 42);
- ABTS_INT_EQUAL(tc, val2->b, 1);
+ ABTS_INT_EQUAL(tc, val2->b, 3);
val2 = apr_skiplist_pop(list2, NULL);
ABTS_INT_EQUAL(tc, val2->a, 142);
ABTS_INT_EQUAL(tc, val2->b, 1);