summaryrefslogtreecommitdiff
path: root/tests/test_config_cmd.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-04-29 08:07:44 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2009-04-29 08:07:44 +0000
commit85120c6b47d6f8ccd1eb1e64a4308f08f1b4e517 (patch)
tree9339963dac740621373ee8cc153c6fb3be0852cb /tests/test_config_cmd.py
parente557c16ec08bb6927410f65cf813ad20293859d5 (diff)
downloadpython-setuptools-git-85120c6b47d6f8ccd1eb1e64a4308f08f1b4e517.tar.gz
Merged revisions 72094 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72094 | tarek.ziade | 2009-04-29 10:03:46 +0200 (Wed, 29 Apr 2009) | 1 line Fixed #5874 : distutils.tests.test_config_cmd is not locale-sensitive anymore ........
Diffstat (limited to 'tests/test_config_cmd.py')
-rw-r--r--tests/test_config_cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config_cmd.py b/tests/test_config_cmd.py
index 1e6ebfac..bacf13a2 100644
--- a/tests/test_config_cmd.py
+++ b/tests/test_config_cmd.py
@@ -46,7 +46,7 @@ class ConfigTestCase(support.LoggingSilencer,
match = cmd.search_cpp(pattern='xxx', body='// xxx')
self.assertEquals(match, 0)
- match = cmd.search_cpp(pattern='command', body='// xxx')
+ match = cmd.search_cpp(pattern='_configtest', body='// xxx')
self.assertEquals(match, 1)
def test_finalize_options(self):