summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tarfile.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-09-06 11:14:49 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-09-06 11:14:49 (GMT)
commit5fbadb63ef2a3d7645396e1f11fe9303883c7e65 (patch)
tree75d288ce9278350ed4dd3730de0d822999e76340 /Lib/test/test_tarfile.py
parentdcaf4ccf3f1d8040313f68b77424d39691389164 (diff)
parent2a23adf4405bcd903aabf445dd54867d95f494a1 (diff)
downloadcpython-5fbadb63ef2a3d7645396e1f11fe9303883c7e65.zip
cpython-5fbadb63ef2a3d7645396e1f11fe9303883c7e65.tar.gz
cpython-5fbadb63ef2a3d7645396e1f11fe9303883c7e65.tar.bz2
Use support.change_cwd() in tests.
Diffstat (limited to 'Lib/test/test_tarfile.py')
-rw-r--r--Lib/test/test_tarfile.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py
index 57cddb2..1412cae 100644
--- a/Lib/test/test_tarfile.py
+++ b/Lib/test/test_tarfile.py
@@ -1132,10 +1132,8 @@ class WriteTest(WriteTestBase, unittest.TestCase):
self.assertEqual(tar.getnames(), [],
"added the archive to itself")
- cwd = os.getcwd()
- os.chdir(TEMPDIR)
- tar.add(dstname)
- os.chdir(cwd)
+ with support.change_cwd(TEMPDIR):
+ tar.add(dstname)
self.assertEqual(tar.getnames(), [],
"added the archive to itself")
finally:
@@ -1292,9 +1290,7 @@ class WriteTest(WriteTestBase, unittest.TestCase):
def test_cwd(self):
# Test adding the current working directory.
- cwd = os.getcwd()
- os.chdir(TEMPDIR)
- try:
+ with support.change_cwd(TEMPDIR):
tar = tarfile.open(tmpname, self.mode)
try:
tar.add(".")
@@ -1308,8 +1304,6 @@ class WriteTest(WriteTestBase, unittest.TestCase):
self.assertTrue(t.name.startswith("./"), t.name)
finally:
tar.close()
- finally:
- os.chdir(cwd)
def test_open_nonwritable_fileobj(self):
for exctype in OSError, EOFError, RuntimeError: