diff options
author | Stefan Krah <skrah@bytereef.org> | 2014-01-21 21:58:40 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2014-01-21 21:58:40 (GMT) |
commit | d9bed99fcb744c3bb5a0d027462a667dceac9795 (patch) | |
tree | 55af303bf98f8609f536064040bf17e1da086a57 | |
parent | 1b94030b370db589286c731c708ab7742a918055 (diff) | |
download | cpython-d9bed99fcb744c3bb5a0d027462a667dceac9795.zip cpython-d9bed99fcb744c3bb5a0d027462a667dceac9795.tar.gz cpython-d9bed99fcb744c3bb5a0d027462a667dceac9795.tar.bz2 |
Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts.
-rw-r--r-- | Lib/test/test_socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 290c4dd..ff42c8b 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -1974,7 +1974,7 @@ class BufferIOTest(SocketConnectedTest): self.assertRaises(ValueError, self.cli_conn.recvfrom_into, buf, 1024) def _testRecvFromIntoSmallBuffer(self): - self.serv_conn.send(MSG*2048) + self.serv_conn.send(MSG) TIPC_STYPE = 2000 |