diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-16 22:20:12 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-16 22:20:12 (GMT) |
| commit | 932c6160b58396d97efdf82779a76c4f648a75f8 (patch) | |
| tree | 56629e86df5d97bcf9d875f79eb5489bc6052310 /Lib/distutils/tests/test_install_lib.py | |
| parent | bc39869095d1d24084965d2c41056750ec579763 (diff) | |
| parent | 39989157add83040a3d29a1bd0a04142ad98d7db (diff) | |
| download | cpython-932c6160b58396d97efdf82779a76c4f648a75f8.zip cpython-932c6160b58396d97efdf82779a76c4f648a75f8.tar.gz cpython-932c6160b58396d97efdf82779a76c4f648a75f8.tar.bz2 | |
Issue #19600: Use specific asserts in distutils tests.
Diffstat (limited to 'Lib/distutils/tests/test_install_lib.py')
| -rw-r--r-- | Lib/distutils/tests/test_install_lib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_install_lib.py b/Lib/distutils/tests/test_install_lib.py index dbb3e9a..40dd1a9 100644 --- a/Lib/distutils/tests/test_install_lib.py +++ b/Lib/distutils/tests/test_install_lib.py @@ -105,7 +105,7 @@ class InstallLibTestCase(support.TempdirManager, finally: sys.dont_write_bytecode = old_dont_write_bytecode - self.assertTrue('byte-compiling is disabled' in self.logs[0][1]) + self.assertIn('byte-compiling is disabled', self.logs[0][1]) def test_suite(): |
