gh-108303: Move zip and tar archives to Lib/test/archivetestdata (#111549)

This commit is contained in:
Nikita Sobolev 2023-11-04 12:57:53 +03:00 committed by GitHub
parent 18c954849b
commit 890ef1b035
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 24 additions and 23 deletions

View file

@ -1318,7 +1318,7 @@ class TestChdir(unittest.TestCase):
def test_reentrant(self):
old_cwd = os.getcwd()
target1 = self.make_relative_path('data')
target2 = self.make_relative_path('ziptestdata')
target2 = self.make_relative_path('archivetestdata')
self.assertNotIn(old_cwd, (target1, target2))
chdir1, chdir2 = chdir(target1), chdir(target2)