From 332e859da08da861e96bdcc6c8deb2619e60bcbc Mon Sep 17 00:00:00 2001 From: Juanadelacuesta <8647634+Juanadelacuesta@users.noreply.github.com> Date: Wed, 26 Mar 2025 10:06:40 +0100 Subject: [PATCH] Typo: Wrong function name --- enos/modules/upgrade_client/scripts/verify_allocs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enos/modules/upgrade_client/scripts/verify_allocs.sh b/enos/modules/upgrade_client/scripts/verify_allocs.sh index 4a17bdccb..cc629cd91 100644 --- a/enos/modules/upgrade_client/scripts/verify_allocs.sh +++ b/enos/modules/upgrade_client/scripts/verify_allocs.sh @@ -63,7 +63,7 @@ sorted_input=($(printf "%s\n" "${INPUT_ARRAY[@]}" | sort)) sorted_running=($(printf "%s\n" "${RUNNING_ARRAY[@]}" | sort)) if [[ "${sorted_input[*]}" != "${sorted_running[*]}" ]]; then - error_exi "Different allocs found, expected: ${sorted_input[*]} found: ${sorted_running[*]}" + error_exit "Different allocs found, expected: ${sorted_input[*]} found: ${sorted_running[*]}" fi echo "All allocs reattached correctly for node at $CLIENT_IP"