Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts.
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index d6e8389..f696fe1 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -4542,7 +4542,7 @@
         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()