diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 01:22:14 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 01:22:14 (GMT) |
commit | cc78c443f2e6d2b2d273195a6d5210ed9fc260ee (patch) | |
tree | 3d08be3263668e80ee2d0f4a6d39b172e18c7c93 /Lib/test | |
parent | 5a21e83119ddb2d641ce9937e245ea94caadf5a6 (diff) | |
parent | 0c2dba5726ca5aee41ad7e7920f0c07a548f0a49 (diff) | |
download | cpython-cc78c443f2e6d2b2d273195a6d5210ed9fc260ee.zip cpython-cc78c443f2e6d2b2d273195a6d5210ed9fc260ee.tar.gz cpython-cc78c443f2e6d2b2d273195a6d5210ed9fc260ee.tar.bz2 |
merge from 3.2
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_shutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index b17ff3e..b64cc3a 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -421,7 +421,7 @@ class TestShutil(unittest.TestCase): self.assertEqual(os.stat(file1).st_mode, os.stat(file2).st_mode) @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.chmod') - @unittest.skipUnless(hasattr(os, 'chmod'), 'requires os.utime') + @unittest.skipUnless(hasattr(os, 'utime'), 'requires os.utime') def test_copy2(self): # Ensure that the copied file exists and has the same mode and # modification time bits. |