summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2014-01-21 21:59:57 (GMT)
committerStefan Krah <skrah@bytereef.org>2014-01-21 21:59:57 (GMT)
commitb772f2e89def5c778b79db07665fb1801e26dc1a (patch)
treee1f235e30baf6e0988094350d123a9a81d75c93f /Lib/test/test_socket.py
parent502d80f8b449eb5a34aa20a0d8655aed6caa08a1 (diff)
parent6b2e5597e10ee13c62292f650df63dda215b9328 (diff)
downloadcpython-b772f2e89def5c778b79db07665fb1801e26dc1a.zip
cpython-b772f2e89def5c778b79db07665fb1801e26dc1a.tar.gz
cpython-b772f2e89def5c778b79db07665fb1801e26dc1a.tar.bz2
Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts.
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r--Lib/test/test_socket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index 3be8a1f..61362ad 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -4687,7 +4687,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)
def testRecvFromIntoEmptyBuffer(self):
buf = bytearray()