From: Bernhard M. Wiedemann Date: Tue, 6 Feb 2018 18:08:53 +0000 (+0100) Subject: bpo-30693: Fix tarfile test cleanup on MSWindows (#5557) X-Git-Tag: v3.8.0a1~2257 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ad703b7ca463d1183539277dde90ffb1c808487;p=python bpo-30693: Fix tarfile test cleanup on MSWindows (#5557) it was using our mocked listdir to check when the files were gone. --- diff --git a/Lib/test/test_tarfile.py b/Lib/test/test_tarfile.py index 8ef4294921..b868326d5c 100644 --- a/Lib/test/test_tarfile.py +++ b/Lib/test/test_tarfile.py @@ -1131,17 +1131,17 @@ 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: - tar.add(path) + with unittest.mock.patch('os.listdir') as mock_listdir: + mock_listdir.return_value = ["2", "1"] + tar.add(path) paths = [] for m in tar.getmembers(): paths.append(os.path.split(m.name)[-1])