diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-24 15:51:30 (GMT) |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-24 15:51:30 (GMT) |
| commit | 1733c9362b7520278120423550de28da44d15f33 (patch) | |
| tree | f445f43584ae72d40b014a6a49c5ac48c2914ee6 /Lib/distutils/tests/test_build_py.py | |
| parent | 468f700af773815e93f32743fa69c1815241d286 (diff) | |
| download | cpython-1733c9362b7520278120423550de28da44d15f33.zip cpython-1733c9362b7520278120423550de28da44d15f33.tar.gz cpython-1733c9362b7520278120423550de28da44d15f33.tar.bz2 | |
fixed warning and error message
Diffstat (limited to 'Lib/distutils/tests/test_build_py.py')
| -rw-r--r-- | Lib/distutils/tests/test_build_py.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_build_py.py b/Lib/distutils/tests/test_build_py.py index e8c7ca9..bfe6154 100644 --- a/Lib/distutils/tests/test_build_py.py +++ b/Lib/distutils/tests/test_build_py.py @@ -103,7 +103,7 @@ class BuildPyTestCase(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(BuildPyTestCase) |
