We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35a502b commit db95c7aCopy full SHA for db95c7a
1 file changed
Lib/distutils/tests/test_config_cmd.py
@@ -44,10 +44,10 @@ def test_search_cpp(self):
44
cmd = config(dist)
45
46
# simple pattern searches
47
- match = cmd.search_cpp(pattern='xxx', body='// xxx')
+ match = cmd.search_cpp(pattern='xxx', body='/* xxx */')
48
self.assertEqual(match, 0)
49
50
- match = cmd.search_cpp(pattern='_configtest', body='// xxx')
+ match = cmd.search_cpp(pattern='_configtest', body='/* xxx */')
51
self.assertEqual(match, 1)
52
53
def test_finalize_options(self):
0 commit comments