diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-16 22:17:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-16 22:17:46 (GMT) |
commit | 39989157add83040a3d29a1bd0a04142ad98d7db (patch) | |
tree | 0f7d77303033959a0e8799776014ab72a99e22ab /Lib/distutils/tests/test_install_lib.py | |
parent | 5665bc5980cd20252fe1d27807759cecee8594d0 (diff) | |
download | cpython-39989157add83040a3d29a1bd0a04142ad98d7db.zip cpython-39989157add83040a3d29a1bd0a04142ad98d7db.tar.gz cpython-39989157add83040a3d29a1bd0a04142ad98d7db.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 2bd4dc6..d0dfca0 100644 --- a/Lib/distutils/tests/test_install_lib.py +++ b/Lib/distutils/tests/test_install_lib.py @@ -103,7 +103,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(): |