From 7712350d2aa4549abdf85e3202078adc8954bd58 Mon Sep 17 00:00:00 2001 From: yxxhero Date: Sat, 24 Jan 2026 13:38:20 +0800 Subject: [PATCH] Fix missing closing parenthesis in grep command Signed-off-by: yxxhero --- test/integration/test-cases/chart-needs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/test-cases/chart-needs.sh b/test/integration/test-cases/chart-needs.sh index ededa85a..a50ceab1 100644 --- a/test/integration/test-cases/chart-needs.sh +++ b/test/integration/test-cases/chart-needs.sh @@ -43,7 +43,7 @@ for i in $(seq 10); do info "Comparing diff/chart-needs #$i" # Remove azuredisk-csi-driver repo to ensure consistent output (repo addition message) ${helm} repo remove azuredisk-csi-driver &>/dev/null || true - ${helmfile} -f ${chart_need_case_input_dir}/${config_file} diff --include-needs | grep -Ev "(Updating repo|Hang tight while we grab|Update Complete|Successfully got an update from|Comparing release=azuredisk-csi-storageclass, chart=.*/chartify.*/azuredisk-csi-storageclass" > ${chart_needs_diff_reverse}.tmp || fail "\"helmfile diff\" shouldn't fail" + ${helmfile} -f ${chart_need_case_input_dir}/${config_file} diff --include-needs | grep -Ev "(Updating repo|Hang tight while we grab|Update Complete|Successfully got an update from|Comparing release=azuredisk-csi-storageclass, chart=.*/chartify.*/azuredisk-csi-storageclass)" > ${chart_needs_diff_reverse}.tmp || fail "\"helmfile diff\" shouldn't fail" cat ${chart_needs_diff_reverse}.tmp | sed -E '/\*{20}/,/\*{20}/d' > ${chart_needs_diff_reverse} # With --enable-live-output, there's a race condition that can cause non-deterministic ordering