From 3ecaccb961bb1dd3a338a1c6ef26e009e4ea5451 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Sun, 17 Oct 2021 11:45:21 -0700 Subject: [PATCH] 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. --- bin/tests/system/cds/checktime.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/cds/checktime.pl b/bin/tests/system/cds/checktime.pl index 692b840adc..aa742106ba 100644 --- a/bin/tests/system/cds/checktime.pl +++ b/bin/tests/system/cds/checktime.pl @@ -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;