mirror of
https://github.com/python/cpython.git
synced 2025-11-20 02:50:14 +00:00
Issue #19600: Use specific asserts in distutils tests.
This commit is contained in:
parent
5665bc5980
commit
39989157ad
16 changed files with 36 additions and 36 deletions
|
|
@ -137,7 +137,7 @@ class BuildCLibTestCase(support.TempdirManager,
|
|||
cmd.run()
|
||||
|
||||
# let's check the result
|
||||
self.assertTrue('libfoo.a' in os.listdir(build_temp))
|
||||
self.assertIn('libfoo.a', os.listdir(build_temp))
|
||||
|
||||
def test_suite():
|
||||
return unittest.makeSuite(BuildCLibTestCase)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue