diff options
author | Brett Cannon <brett@python.org> | 2013-08-23 18:38:11 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-08-23 18:38:11 (GMT) |
commit | 9c7eb5557022e0682fbfc74e524cae8a9a2bc702 (patch) | |
tree | 2f49357776cf02e38675185d3716be173c7e5c27 /Lib/test/test_shutil.py | |
parent | 7e0a18158f8224b68f524fe81896ba64504e0fff (diff) | |
download | cpython-9c7eb5557022e0682fbfc74e524cae8a9a2bc702.zip cpython-9c7eb5557022e0682fbfc74e524cae8a9a2bc702.tar.gz cpython-9c7eb5557022e0682fbfc74e524cae8a9a2bc702.tar.bz2 |
Stop using assertEquals.
Diffstat (limited to 'Lib/test/test_shutil.py')
-rw-r--r-- | Lib/test/test_shutil.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index 0c24b7e..0fbe078 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -743,14 +743,14 @@ class TestShutil(unittest.TestCase): os.chmod(restrictive_subdir, 0o600) shutil.copytree(src_dir, dst_dir) - self.assertEquals(os.stat(src_dir).st_mode, os.stat(dst_dir).st_mode) - self.assertEquals(os.stat(os.path.join(src_dir, 'permissive.txt')).st_mode, + self.assertEqual(os.stat(src_dir).st_mode, os.stat(dst_dir).st_mode) + self.assertEqual(os.stat(os.path.join(src_dir, 'permissive.txt')).st_mode, os.stat(os.path.join(dst_dir, 'permissive.txt')).st_mode) - self.assertEquals(os.stat(os.path.join(src_dir, 'restrictive.txt')).st_mode, + self.assertEqual(os.stat(os.path.join(src_dir, 'restrictive.txt')).st_mode, os.stat(os.path.join(dst_dir, 'restrictive.txt')).st_mode) restrictive_subdir_dst = os.path.join(dst_dir, os.path.split(restrictive_subdir)[1]) - self.assertEquals(os.stat(restrictive_subdir).st_mode, + self.assertEqual(os.stat(restrictive_subdir).st_mode, os.stat(restrictive_subdir_dst).st_mode) @unittest.skipUnless(hasattr(os, 'link'), 'requires os.link') |