From 4136d6f606d40d72ec0262c23d32135517cf0f96 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Thu, 29 Jan 2026 17:45:43 +0000 Subject: [PATCH] Fix incorrect assertion in helm_pull integration test (#1077) (#1078) This is a backport of PR #1077 as merged into main (23b6cec). SUMMARY The error message emitted for incorrect helm version has changed since the merge of #1039. This PR updates the related assertion in the helm_pull integration test Reviewed-by: Bianca Henderson --- tests/integration/targets/helm_pull/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/targets/helm_pull/tasks/main.yml b/tests/integration/targets/helm_pull/tasks/main.yml index 0abbe507..c4e92f9e 100644 --- a/tests/integration/targets/helm_pull/tasks/main.yml +++ b/tests/integration/targets/helm_pull/tasks/main.yml @@ -47,7 +47,7 @@ assert: that: - _result is failed - - _result.msg == "This module requires helm >= 3.0.0, current version is 2.3.0" + - _result.msg == "Helm version must be >=3.0.0,<4.0.0, current version is 2.3.0" vars: helm_path: "{{ temp_dir }}/2.3.0/linux-amd64/helm"