summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_config_cmd.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-10-09 04:33:54 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-10-09 04:33:54 (GMT)
commitece7079b54d9a6700558210339df02e4586f698c (patch)
tree58e99d5e2b61db79b1839b1a7c34dcf137594da4 /Lib/distutils/tests/test_config_cmd.py
parent31b3763fa304038a0f1d8a0be5e4a2b41026f107 (diff)
parent1a1a8a0e31777f8b943b17f5551cac26a5671907 (diff)
downloadcpython-ece7079b54d9a6700558210339df02e4586f698c.zip
cpython-ece7079b54d9a6700558210339df02e4586f698c.tar.gz
cpython-ece7079b54d9a6700558210339df02e4586f698c.tar.bz2
Branch merge
Diffstat (limited to 'Lib/distutils/tests/test_config_cmd.py')
-rw-r--r--Lib/distutils/tests/test_config_cmd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/tests/test_config_cmd.py b/Lib/distutils/tests/test_config_cmd.py
index a36a1d5..2cf3886 100644
--- a/Lib/distutils/tests/test_config_cmd.py
+++ b/Lib/distutils/tests/test_config_cmd.py
@@ -44,10 +44,10 @@ class ConfigTestCase(support.LoggingSilencer,
cmd = config(dist)
# simple pattern searches
- match = cmd.search_cpp(pattern='xxx', body='// xxx')
+ match = cmd.search_cpp(pattern='xxx', body='/* xxx */')
self.assertEqual(match, 0)
- match = cmd.search_cpp(pattern='_configtest', body='// xxx')
+ match = cmd.search_cpp(pattern='_configtest', body='/* xxx */')
self.assertEqual(match, 1)
def test_finalize_options(self):