Skip to content

Commit 1bc972c

Browse files
committed
fix test on windows
1 parent 76a2622 commit 1bc972c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_subprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1658,7 +1658,7 @@ def test_post_timeout_communicate_sends_input(self):
16581658
text=True,
16591659
) as proc:
16601660
try:
1661-
data = f"spam{'#'*subprocess._PIPE_BUF}beans"
1661+
data = f"spam{'#'*4096}beans"
16621662
proc.communicate(
16631663
input=data,
16641664
timeout=0,

0 commit comments

Comments
 (0)