diff options
| author | ?ric Araujo <merwok@netwok.org> | 2011-10-07 23:14:35 +0200 |
|---|---|---|
| committer | ?ric Araujo <merwok@netwok.org> | 2011-10-07 23:14:35 +0200 |
| commit | 28f9d8178a5d2564f673594ad43bb8085ec102ee (patch) | |
| tree | 1689057d50acc29dafe6aea58898c72682e08953 /distutils2/tests | |
| parent | 4a29369d34d6986727c49162fe2f84cc7ad06c51 (diff) | |
| download | disutils2-28f9d8178a5d2564f673594ad43bb8085ec102ee.tar.gz | |
Make C code in one test comply with ISO C (#10359).
Patch by Hallvard B Furuseth.
Diffstat (limited to 'distutils2/tests')
| -rw-r--r-- | distutils2/tests/test_command_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distutils2/tests/test_command_config.py b/distutils2/tests/test_command_config.py index 7c577b0..5bb27e3 100644 --- a/distutils2/tests/test_command_config.py +++ b/distutils2/tests/test_command_config.py @@ -32,10 +32,10 @@ class ConfigTestCase(support.LoggingCatcher, 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): |
