mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 10:12:09 -04:00
Fix cds test error
The margin of error (up to 2 seconds) allowed for the inception time in the cds system test was a bit too small, and has been increased to 3 seconds.
This commit is contained in:
parent
9b6060c6c4
commit
3ecaccb961
1 changed files with 1 additions and 1 deletions
|
|
@ -22,4 +22,4 @@ while (<>) {
|
|||
die "missing notbefore time" unless $notbefore;
|
||||
die "missing inception time" unless $inception;
|
||||
my $delta = $inception - $notbefore;
|
||||
die "bad inception time $delta" unless abs($delta - $target) < 3;
|
||||
die "bad inception time $delta" unless abs($delta - $target) <= 3;
|
||||
|
|
|
|||
Loading…
Reference in a new issue