Merge "Removing reference to the deprecated 'plan-environment.yaml'"

This commit is contained in:
Zuul 2023-01-06 17:23:03 +00:00 committed by Gerrit Code Review
commit d145e95b6f
1 changed files with 2 additions and 2 deletions

View File

@ -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):