Add one missing check to nsec3param unit test

Caught this missing check with clang-build while backporting #1620
to the v9_16 branch.
This commit is contained in:
Matthijs Mekking
2020-11-26 13:37:24 +01:00
parent dcb8394c0c
commit dff01583db

View File

@@ -155,7 +155,7 @@ nsec3param_change_test(const nsec3param_change_test_params_t *test) {
*/
result = dns__zone_lookup_nsec3param(zone, &lookup, &param, saltbuf,
test->resalt);
assert_int_equal(result, test->expected_result);
assert_int_equal(param.hash, expect.hash);
assert_int_equal(param.flags, expect.flags);
assert_int_equal(param.iterations, expect.iterations);