From b7fe04a7dda0895823272b7acdd8260f3ef6ae0b Mon Sep 17 00:00:00 2001 From: Jiri Podivin Date: Fri, 4 Nov 2022 12:04:57 +0100 Subject: [PATCH] Removing reference to the deprecated 'plan-environment.yaml' Closes-Bug: #1995702 Signed-off-by: Jiri Podivin Change-Id: I97fa450e88493b01054372ab18de4dec798ac317 --- tripleo_ansible/tests/plugins/filter/test_helpers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tripleo_ansible/tests/plugins/filter/test_helpers.py b/tripleo_ansible/tests/plugins/filter/test_helpers.py index b5fb94e29..d5917a549 100644 --- a/tripleo_ansible/tests/plugins/filter/test_helpers.py +++ b/tripleo_ansible/tests/plugins/filter/test_helpers.py @@ -387,11 +387,11 @@ class TestHelperFilters(tests_base.TestCase): self.assertEqual(result, file_path) def test_abspath_not_found(self): - file_path = 'plan-environment.yaml' + file_path = 'roles_data.yaml' ex = self.assertRaises( errors.AnsibleFilterError, self.filters.tht_abspath, file_path) - msg = ("Can't find path plan-environment.yaml") + msg = (f"Can't find path {file_path}") self.assertEqual(msg, str(ex)) def test_needs_delete(self):