diff --git a/tests/charts/test_pod_template_file.py b/tests/charts/test_pod_template_file.py index 581f7acd61664..c44efbd703144 100644 --- a/tests/charts/test_pod_template_file.py +++ b/tests/charts/test_pod_template_file.py @@ -280,7 +280,11 @@ def test_logs_persistence_changes_volume(self, log_persistence_values, expected) def test_should_set_a_custom_image_in_pod_template(self): docs = render_chart( - values={"images": {"pod_template": {"repository": "dummy_image", "tag": "latest", "pullPolicy": "Always"}}}, + values={ + "images": { + "pod_template": {"repository": "dummy_image", "tag": "latest", "pullPolicy": "Always"} + } + }, show_only=["templates/pod-template-file.yaml"], chart_dir=self.temp_chart_dir, )