Issue #11719: Fix message about unexpected test_msilib skip.

Patch by Nadeem Vawda.
This commit is contained in:
Ross Lagerwall 2011-04-09 20:39:50 +02:00
parent 5de51ac4c0
commit fe2f1ad5b5
2 changed files with 4 additions and 1 deletions

View File

@ -1470,7 +1470,7 @@ class _ExpectedSkips:
# is distributed with Python
WIN_ONLY = ["test_unicode_file", "test_winreg",
"test_winsound", "test_startfile",
"test_sqlite"]
"test_sqlite", "test_msilib"]
for skip in WIN_ONLY:
self.expected.add(skip)

View File

@ -319,6 +319,9 @@ Build
Tests
-----
- Issue #11719: Fix message about unexpected test_msilib skip on non-Windows
platforms. Patch by Nadeem Vawda.
- Issue #7108: Fix test_commands to not fail when special attributes ('@'
or '.') appear in 'ls -l' output.