diff options
Diffstat (limited to 'src/or/test.c')
-rw-r--r-- | src/or/test.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/test.c b/src/or/test.c index 338195fd25..f2cc7cc1f3 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -3381,6 +3381,9 @@ test_dirutil_param_voting(void) "abcd=20 c=60 cw=500 x-yz=-9 zzzzz=101", NULL, 0, 0); smartlist_split_string(vote4.net_params, "ab=900 abcd=200 c=1 cw=51 x-yz=100", NULL, 0, 0); + test_eq(100, networkstatus_get_param(&vote4, "x-yz", 50)); + test_eq(222, networkstatus_get_param(&vote4, "foobar", 222)); + smartlist_add(votes, &vote1); smartlist_add(votes, &vote2); smartlist_add(votes, &vote3); |