Skip to content

Commit 8d84120

Browse files
authored
Fixing a typo in test_cmd_line.py (#118728)
1 parent 05c2fe1 commit 8d84120

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_cmd_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ def test_cpu_count_default(self):
981981
self.assertEqual(self.res2int(res), (os.cpu_count(), os.process_cpu_count()))
982982
res = assert_python_ok('-X', 'cpu_count=default', '-c', code, PYTHON_CPU_COUNT='1234')
983983
self.assertEqual(self.res2int(res), (os.cpu_count(), os.process_cpu_count()))
984-
es = assert_python_ok('-c', code, PYTHON_CPU_COUNT='default')
984+
res = assert_python_ok('-c', code, PYTHON_CPU_COUNT='default')
985985
self.assertEqual(self.res2int(res), (os.cpu_count(), os.process_cpu_count()))
986986

987987
def res2int(self, res):

0 commit comments

Comments
 (0)