bpo-30693: Fix tarfile test cleanup on MSWindows (#5557)

it was using our mocked listdir to check when the files were gone.
This commit is contained in:
Bernhard M. Wiedemann 2018-02-06 19:08:53 +01:00 committed by Serhiy Storchaka
parent c1e46e94de
commit 4ad703b7ca
1 changed files with 4 additions and 4 deletions

View File

@ -1131,16 +1131,16 @@ class WriteTest(WriteTestBase, unittest.TestCase):
# mock the following:
# os.listdir: so we know that files are in the wrong order
@unittest.mock.patch('os.listdir')
def test_ordered_recursion(self, mock_listdir):
def test_ordered_recursion(self):
path = os.path.join(TEMPDIR, "directory")
os.mkdir(path)
open(os.path.join(path, "1"), "a").close()
open(os.path.join(path, "2"), "a").close()
mock_listdir.return_value = ["2", "1"]
try:
tar = tarfile.open(tmpname, self.mode)
try:
with unittest.mock.patch('os.listdir') as mock_listdir:
mock_listdir.return_value = ["2", "1"]
tar.add(path)
paths = []
for m in tar.getmembers():