summaryrefslogtreecommitdiffstats
path: root/unit/test-idmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'unit/test-idmap.c')
-rw-r--r--unit/test-idmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unit/test-idmap.c b/unit/test-idmap.c
index 0a8c4ff4..bf428f86 100644
--- a/unit/test-idmap.c
+++ b/unit/test-idmap.c
@@ -43,15 +43,15 @@ static void test_alloc()
g_assert(bit == 2);
bit = idmap_alloc(idmap);
- g_assert(bit == 0);
+ g_assert(bit == 3);
idmap_put(idmap, 3);
bit = idmap_alloc(idmap);
- g_assert(bit == 0);
+ g_assert(bit == 3);
idmap_put(idmap, 0);
bit = idmap_alloc(idmap);
- g_assert(bit == 0);
+ g_assert(bit == 3);
idmap_put(idmap, 1);
bit = idmap_alloc(idmap);