There was an error while loading. Please reload this page.
1 parent 6a286e6 commit bc8b07dCopy full SHA for bc8b07d
1 file changed
Lib/test/test_socket.py
@@ -499,7 +499,10 @@ def clientSetUp(self):
499
self.cli.connect((cid, VSOCKPORT))
500
501
def testStream(self):
502
- msg = self.conn.recv(1024)
+ try:
503
+ msg = self.conn.recv(1024)
504
+ except PermissionError as exc:
505
+ self.skipTest(repr(exc))
506
self.assertEqual(msg, MSG)
507
508
def _testStream(self):
0 commit comments