Skip to content

Commit c13851c

Browse files
committed
fix spaces
1 parent 6bc56b8 commit c13851c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/test/test_cmd_line.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,10 +347,10 @@ def test_non_interactive_output_buffering(self):
347347
""")
348348
args = [sys.executable, '-c', code]
349349
proc = subprocess.run(args, stdout=subprocess.PIPE,
350-
stderr=subprocess.PIPE, text=True, check=True)
350+
stderr=subprocess.PIPE, text=True, check=True)
351351
self.assertEqual(proc.stdout,
352-
'False False False\n'
353-
'False False True\n')
352+
'False False False\n'
353+
'False False True\n')
354354

355355
def test_unbuffered_output(self):
356356
# Test expected operation of the '-u' switch

0 commit comments

Comments
 (0)