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.
2 parents f867e4c + 1736f53 commit 3054764Copy full SHA for 3054764
1 file changed
distutils/tests/test_sysconfig.py
@@ -288,11 +288,10 @@ def test_parse_config_h(self):
288
input = {}
289
with open(config_h, encoding="utf-8") as f:
290
result = sysconfig.parse_config_h(f, g=input)
291
- self.assertTrue(input)
292
self.assertTrue(input is result)
293
294
result = sysconfig.parse_config_h(f)
295
- self.assertTrue(result)
+ self.assertTrue(isinstance(result, dict))
296
297
def test_suite():
298
suite = unittest.TestSuite()
0 commit comments