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:
Evan Hunt 2021-10-17 11:45:21 -07:00
parent 9b6060c6c4
commit 3ecaccb961

View file

@ -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;