Skip to content

Commit a6ebf95

Browse files
authored
KV must gather: fix test: remove redundant dot in a script (#70832)
Signed-off-by: Nahshon Unna-Tsameret <[email protected]>
1 parent aa7a86f commit a6ebf95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci-operator/config/kubevirt/must-gather/kubevirt-must-gather-main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ tests:
133133
# will be run.
134134
TIMEOUT_SEC=60
135135
for i in $(seq 1 ${TIMEOUT_SEC}); do
136-
NUM_CSV_W_ORIG_IMG=$(oc get csv -A -o json | jq '[.items[] | select(.metadata.annotations.["operators.openshift.io/must-gather-image"] == "'"${ORIG_MG_IMG}"'") | .metadata.name] | length')
136+
NUM_CSV_W_ORIG_IMG=$(oc get csv -A -o json | jq '[.items[] | select(.metadata.annotations["operators.openshift.io/must-gather-image"] == "'"${ORIG_MG_IMG}"'") | .metadata.name] | length')
137137
if [[ ${NUM_CSV_W_ORIG_IMG} == 0 ]]; then
138138
echo "all CSVs are updated with the new image"
139139
break
@@ -252,7 +252,7 @@ tests:
252252
# will be run.
253253
TIMEOUT_SEC=60
254254
for i in $(seq 1 ${TIMEOUT_SEC}); do
255-
NUM_CSV_W_ORIG_IMG=$(oc get csv -A -o json | jq '[.items[] | select(.metadata.annotations.["operators.openshift.io/must-gather-image"] == "'"${ORIG_MG_IMG}"'") | .metadata.name] | length')
255+
NUM_CSV_W_ORIG_IMG=$(oc get csv -A -o json | jq '[.items[] | select(.metadata.annotations["operators.openshift.io/must-gather-image"] == "'"${ORIG_MG_IMG}"'") | .metadata.name] | length')
256256
if [[ ${NUM_CSV_W_ORIG_IMG} == 0 ]]; then
257257
echo "all CSVs are updated with the new image"
258258
break

0 commit comments

Comments
 (0)