mirror of https://github.com/python/cpython
Fixing a typo in test_cmd_line.py (#118728)
This commit is contained in:
parent
05c2fe1acd
commit
8d84120b41
|
@ -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…
Reference in New Issue