Skip to content

Commit 37ee4d6

Browse files
committed
pythongh-114100: Replace print with simple expression
1 parent 6e69757 commit 37ee4d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_pty.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def test_master_read(self):
292292
self.assertEqual(data, b"")
293293

294294
def test_spawn_doesnt_hang(self):
295-
pty.spawn([sys.executable, '-c', 'print("1 + 1")'])
295+
pty.spawn([sys.executable, '-c', '1 + 1'])
296296

297297
class SmallPtyTests(unittest.TestCase):
298298
"""These tests don't spawn children or hang."""

0 commit comments

Comments
 (0)