mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '1854-extend-loop-limit-by-1' into 'master'
Resolve "Extend loop limit by 1." Closes #1854 See merge request isc-projects/bind9!3548
This commit is contained in:
commit
0a87413c2a
1 changed files with 1 additions and 1 deletions
|
|
@ -211,7 +211,7 @@ dns_dbfind_staleok_test(void **state) {
|
|||
count = 0;
|
||||
do {
|
||||
count++;
|
||||
assert_in_range(count, 0, 20); /* loop sanity */
|
||||
assert_in_range(count, 1, 21); /* loop sanity */
|
||||
assert_int_equal(rdataset.attributes &
|
||||
DNS_RDATASETATTR_STALE,
|
||||
0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue