diff options
author | Stefan Krah <skrah@bytereef.org> | 2014-01-21 22:58:40 +0100 |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2014-01-21 22:58:40 +0100 |
commit | b4466f003745869fed0ccc1fa3625bb3db48711d (patch) | |
tree | 20df9b9c8282b1a2c8688173cd86a43a432e16d0 | |
parent | e834ed943771b2c55847cf336c41dbc0eb66ef25 (diff) | |
download | cpython-git-b4466f003745869fed0ccc1fa3625bb3db48711d.tar.gz |
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 c242a57991..e768321e24 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -1430,7 +1430,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 |