diff options
| 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) |
| commit | a5bc34fa00602911f1ab870456d1319af1cd6391 (patch) | |
| tree | 708d2d803179fa6f2440204de3a0f6f0b35c7df8 /Lib/distutils/tests/test_config_cmd.py | |
| parent | c0bbe7d38a9a7b43de4a921876072662ba5c82fc (diff) | |
| parent | 5819dcc0d262ef0ceaffc68d1b65f3d031e27b68 (diff) | |
| download | cpython-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.py | 4 |
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): |
