Fix incorrect assertion in helm_pull integration test (#1077)

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: Chyna Sanders
Reviewed-by: Mike Graves <mgraves@redhat.com>
This commit is contained in:
Bianca Henderson
2026-01-29 10:49:49 -06:00
committed by GitHub
parent 34beacf32b
commit 23b6cec173

View File

@@ -47,7 +47,7 @@
assert: assert:
that: that:
- _result is failed - _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: vars:
helm_path: "{{ temp_dir }}/2.3.0/linux-amd64/helm" helm_path: "{{ temp_dir }}/2.3.0/linux-amd64/helm"