test: use assert_se in test_hashmap_move

This commit is contained in:
Michal Schmidt 2014-11-04 17:04:16 +01:00
parent 455971c149
commit e80afdb3e4

View file

@ -194,8 +194,8 @@ static void test_hashmap_move(void) {
hashmap_put(m, "key 3", val3);
hashmap_put(m, "key 4", val4);
assert(hashmap_move(n, NULL) == 0);
assert(hashmap_move(n, m) == 0);
assert_se(hashmap_move(n, NULL) == 0);
assert_se(hashmap_move(n, m) == 0);
assert_se(hashmap_size(m) == 1);
r = hashmap_get(m, "key 1");