Skip to content

Commit

Permalink
fix spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframAlph committed Jan 2, 2025
1 parent 6bc56b8 commit c13851c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Lib/test/test_cmd_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,10 @@ def test_non_interactive_output_buffering(self):
""")
args = [sys.executable, '-c', code]
proc = subprocess.run(args, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, text=True, check=True)
stderr=subprocess.PIPE, text=True, check=True)
self.assertEqual(proc.stdout,
'False False False\n'
'False False True\n')
'False False False\n'
'False False True\n')

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

0 comments on commit c13851c

Please sign in to comment.