mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Fixing a typo in test_cmd_line.py (#118728)
This commit is contained in:
parent
05c2fe1acd
commit
8d84120b41
1 changed files with 1 additions and 1 deletions
|
@ -981,7 +981,7 @@ class CmdLineTest(unittest.TestCase):
|
|||
self.assertEqual(self.res2int(res), (os.cpu_count(), os.process_cpu_count()))
|
||||
res = assert_python_ok('-X', 'cpu_count=default', '-c', code, PYTHON_CPU_COUNT='1234')
|
||||
self.assertEqual(self.res2int(res), (os.cpu_count(), os.process_cpu_count()))
|
||||
es = assert_python_ok('-c', code, PYTHON_CPU_COUNT='default')
|
||||
res = assert_python_ok('-c', code, PYTHON_CPU_COUNT='default')
|
||||
self.assertEqual(self.res2int(res), (os.cpu_count(), os.process_cpu_count()))
|
||||
|
||||
def res2int(self, res):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue