Replace TestCase.assertEquals with TestCase.assertEqual.

This commit is contained in:
Mads Jensen
2019-11-11 10:24:21 -08:00
committed by Matt Clay
parent a7ae0da6a4
commit 0f491c0289
40 changed files with 332 additions and 334 deletions
+1 -1
View File
@@ -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', [