From b8cfdd06fb990568e762abd41044eac45f17af01 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Fri, 28 Feb 2025 11:47:55 +0000 Subject: [PATCH] shellcheck: Fix shellcheck SC2071 > > is for string comparisons. Use -gt instead. Signed-off-by: stevenhorsman --- tests/stability/kubernetes_stability.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stability/kubernetes_stability.sh b/tests/stability/kubernetes_stability.sh index 0b6b4b506..9a1e61253 100755 --- a/tests/stability/kubernetes_stability.sh +++ b/tests/stability/kubernetes_stability.sh @@ -29,7 +29,7 @@ function main() { echo "Running kubernetes stability test" count=0 - while [[ "${end_time}" > $(date +%s) ]]; do + while [[ "${end_time}" -gt $(date +%s) ]]; do echo "This is the number of iterations $count" count=$((count+1))