mirror of
https://github.com/ansible/ansible.git
synced 2026-08-01 08:08:00 +02:00
Replace TestCase.assertEquals with TestCase.assertEqual.
This commit is contained in:
@@ -459,7 +459,7 @@ class TestGalaxyInitSkeleton(unittest.TestCase, ValidRoleTests):
|
||||
self.assertTrue(os.path.exists(os.path.join(self.role_dir, 'templates_extra', 'templates.txt')))
|
||||
|
||||
def test_skeleton_option(self):
|
||||
self.assertEquals(self.role_skeleton_path, context.CLIARGS['role_skeleton'], msg='Skeleton path was not parsed properly from the command line')
|
||||
self.assertEqual(self.role_skeleton_path, context.CLIARGS['role_skeleton'], msg='Skeleton path was not parsed properly from the command line')
|
||||
|
||||
|
||||
@pytest.mark.parametrize('cli_args, expected', [
|
||||
|
||||
Reference in New Issue
Block a user