summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_install_lib.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-10-24 15:51:30 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-10-24 15:51:30 (GMT)
commit1733c9362b7520278120423550de28da44d15f33 (patch)
treef445f43584ae72d40b014a6a49c5ac48c2914ee6 /Lib/distutils/tests/test_install_lib.py
parent468f700af773815e93f32743fa69c1815241d286 (diff)
downloadcpython-1733c9362b7520278120423550de28da44d15f33.zip
cpython-1733c9362b7520278120423550de28da44d15f33.tar.gz
cpython-1733c9362b7520278120423550de28da44d15f33.tar.bz2
fixed warning and error message
Diffstat (limited to 'Lib/distutils/tests/test_install_lib.py')
-rw-r--r--Lib/distutils/tests/test_install_lib.py2
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 fab66d1..99a6d90 100644
--- a/Lib/distutils/tests/test_install_lib.py
+++ b/Lib/distutils/tests/test_install_lib.py
@@ -92,7 +92,7 @@ class InstallLibTestCase(support.TempdirManager,
finally:
sys.dont_write_bytecode = old_dont_write_bytecode
- self.assertTrue('byte-compile not supported ' in self.logs[0][1])
+ self.assertTrue('byte-compiling is disabled' in self.logs[0][1])
def test_suite():
return unittest.makeSuite(InstallLibTestCase)