diff options
author | Éric Araujo <merwok@netwok.org> | 2010-11-17 23:11:08 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-11-17 23:11:08 (GMT) |
commit | 1c4253d600f39f3a12fe4010523b51e8cbdaedae (patch) | |
tree | 31d5e4e960823da82a602e653755b9f469b62bbc /Lib | |
parent | 056f33d60ce5592b22b2d23cf9ba2f6632de218e (diff) | |
download | cpython-1c4253d600f39f3a12fe4010523b51e8cbdaedae.zip cpython-1c4253d600f39f3a12fe4010523b51e8cbdaedae.tar.gz cpython-1c4253d600f39f3a12fe4010523b51e8cbdaedae.tar.bz2 |
Merged revisions 86235 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r86235 | eric.araujo | 2010-11-06 03:12:51 +0100 (sam., 06 nov. 2010) | 2 lines
Fix one omission in r78359
........
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_shutil.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index 648a2cd..9f14fd8 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -469,6 +469,7 @@ class TestShutil(unittest.TestCase): # check if the compressed tarball was created tarball = base_name + '.zip' + self.assertTrue(os.path.exists(tarball)) def test_make_archive(self): |