summaryrefslogtreecommitdiff
path: root/test/test_rdxtree.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_rdxtree.c')
-rw-r--r--test/test_rdxtree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_rdxtree.c b/test/test_rdxtree.c
index 250ce69..6aefeef 100644
--- a/test/test_rdxtree.c
+++ b/test/test_rdxtree.c
@@ -228,10 +228,10 @@ test_5(void)
TITLE("insert 0 and 4096");
rdxtree_init(&tree);
- obj = obj_create(4096);
+ obj = obj_create(0);
error = rdxtree_insert(&tree, obj->id, obj);
assert(!error);
- obj = obj_create(0);
+ obj = obj_create(4096);
error = rdxtree_insert(&tree, obj->id, obj);
assert(!error);
print_tree(&tree);