Add Bucket LifeCycle Integration Test (#1711)

This commit is contained in:
Cesar Celis Hernandez
2022-03-14 21:48:25 -04:00
committed by GitHub
parent 82bdc228b2
commit e060e1d97e
2 changed files with 286 additions and 3 deletions

View File

@@ -770,10 +770,10 @@ jobs:
result=${result%\%}
echo "result:"
echo $result
threshold=49.4
threshold=50.4
if (( $(echo "$result >= $threshold" |bc -l) )); then
echo "greater than threshold, passed!"
echo "It is equal or greater than threshold, passed!"
else
echo "smaller than threshold, failed!"
echo "It is smaller than threshold value, failed!"
exit 1
fi