Unverified Kaydet (Commit) 95c32627 authored tarafından Serhiy Storchaka's avatar Serhiy Storchaka Kaydeden (comit) GitHub

Use assertTrue() instead of deprecated assert_(). (#5526)

üst 07ca9afa
...@@ -548,7 +548,7 @@ class _pthFileTests(unittest.TestCase): ...@@ -548,7 +548,7 @@ class _pthFileTests(unittest.TestCase):
'import sys; print("\\n".join(sys.path) if sys.flags.no_site else "")' 'import sys; print("\\n".join(sys.path) if sys.flags.no_site else "")'
], env=env, encoding='ansi') ], env=env, encoding='ansi')
actual_sys_path = output.rstrip().split('\n') actual_sys_path = output.rstrip().split('\n')
self.assert_(actual_sys_path, "sys.flags.no_site was False") self.assertTrue(actual_sys_path, "sys.flags.no_site was False")
self.assertEqual( self.assertEqual(
actual_sys_path, actual_sys_path,
sys_path, sys_path,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment