From: Nick Mathewson Date: Mon, 2 Oct 2017 17:59:08 +0000 (-0400) Subject: Make the fp_pair_map tests cover {get,set}_by_digests X-Git-Tag: tor-0.3.3.0-alpha-dev~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bb7288b2c31c8a73654408a421681fd19778b835;p=thirdparty%2Ftor.git Make the fp_pair_map tests cover {get,set}_by_digests --- diff --git a/src/test/test_containers.c b/src/test/test_containers.c index 279d69754f..c4dba73750 100644 --- a/src/test/test_containers.c +++ b/src/test/test_containers.c @@ -1106,7 +1106,7 @@ test_container_fp_pair_map(void *arg) tt_int_op(fp_pair_map_size(map),OP_EQ, 4); fp_pair_map_assert_ok(map); fp_pair_map_set(map, &fp5, v104); - fp_pair_map_set(map, &fp6, v105); + fp_pair_map_set_by_digests(map, fp6.first, fp6.second, v105); fp_pair_map_assert_ok(map); /* Test iterator. */ @@ -1124,7 +1124,8 @@ test_container_fp_pair_map(void *arg) /* Make sure we removed fp2, but not the others. */ tt_ptr_op(fp_pair_map_get(map, &fp2),OP_EQ, NULL); - tt_ptr_op(fp_pair_map_get(map, &fp5),OP_EQ, v104); + tt_ptr_op(fp_pair_map_get_by_digests(map, fp5.first, fp5.second), + OP_EQ, v104); fp_pair_map_assert_ok(map); /* Clean up after ourselves. */