diff --git a/bin/tests/system/dnssec/tests.sh b/bin/tests/system/dnssec/tests.sh index 117fc0ca68..dda755f9a1 100644 --- a/bin/tests/system/dnssec/tests.sh +++ b/bin/tests/system/dnssec/tests.sh @@ -2855,7 +2855,7 @@ for ttl in ${ttls:-0}; do [ "$ttl" -eq 300 ] || ret=1 done for ttl in ${ttls2:-0}; do - [ "$ttl" -le 120 ] && [ "$ttl" -gt 60 ] || ret=1 + [ "$ttl" -eq 120 ] || ret=1 done n=$((n+1)) test "$ret" -eq 0 || echo_i "failed" @@ -2871,7 +2871,7 @@ for ttl in ${ttls:-0}; do [ "$ttl" -eq 300 ] || ret=1 done for ttl in ${ttls2:-0}; do - [ "$ttl" -le 120 ] && [ "$ttl" -gt 60 ] || ret=1 + [ "$ttl" -eq 120 ] || ret=1 done n=$((n+1)) test "$ret" -eq 0 || echo_i "failed"