summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_install_lib.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2016-08-31 15:39:35 (GMT)
committerR David Murray <rdmurray@bitdance.com>2016-08-31 15:39:35 (GMT)
commit8890bb22646d8207f5504ffbc258798e8cc328fa (patch)
treeda129b6c9a9e11d88df048c13fae87de331462df /Lib/distutils/tests/test_install_lib.py
parentdd917f84e3775596049e09746f32053c50b3d422 (diff)
downloadcpython-8890bb22646d8207f5504ffbc258798e8cc328fa.zip
cpython-8890bb22646d8207f5504ffbc258798e8cc328fa.tar.gz
cpython-8890bb22646d8207f5504ffbc258798e8cc328fa.tar.bz2
#27904: fix distutils tests.
Patch by Ville Skyttä.
Diffstat (limited to 'Lib/distutils/tests/test_install_lib.py')
-rw-r--r--Lib/distutils/tests/test_install_lib.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_install_lib.py b/Lib/distutils/tests/test_install_lib.py
index 5378aa8..fda6315 100644
--- a/Lib/distutils/tests/test_install_lib.py
+++ b/Lib/distutils/tests/test_install_lib.py
@@ -104,7 +104,8 @@ class InstallLibTestCase(support.TempdirManager,
finally:
sys.dont_write_bytecode = old_dont_write_bytecode
- self.assertIn('byte-compiling is disabled', self.logs[0][1])
+ self.assertIn('byte-compiling is disabled',
+ self.logs[0][1] % self.logs[0][2])
def test_suite():