summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_config_cmd.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-10-09 05:32:35 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-10-09 05:32:35 (GMT)
commita5bc34fa00602911f1ab870456d1319af1cd6391 (patch)
tree708d2d803179fa6f2440204de3a0f6f0b35c7df8 /Lib/distutils/tests/test_config_cmd.py
parentc0bbe7d38a9a7b43de4a921876072662ba5c82fc (diff)
parent5819dcc0d262ef0ceaffc68d1b65f3d031e27b68 (diff)
downloadcpython-a5bc34fa00602911f1ab870456d1319af1cd6391.zip
cpython-a5bc34fa00602911f1ab870456d1319af1cd6391.tar.gz
cpython-a5bc34fa00602911f1ab870456d1319af1cd6391.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 4f7ebdd..e2e6e4e 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):