We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af3e88 commit 5a1eaa3Copy full SHA for 5a1eaa3
Lib/test/test_socket.py
@@ -2605,7 +2605,7 @@ def testCreateRfcommSocket(self):
2605
with socket.socket(socket.AF_BLUETOOTH, socket.SOCK_STREAM, socket.BTPROTO_RFCOMM) as s:
2606
pass
2607
2608
- @unittest.skipUnless(HAVE_SOCKET_BLUETOOTH_L2CAP, 'Bluetooth L2CAP sockets required for this test')
+ @unittest.skipIf(sys.platform == "win32", "windows does not support L2CAP sockets")
2609
def testCreateL2capSocket(self):
2610
with socket.socket(socket.AF_BLUETOOTH, socket.SOCK_SEQPACKET, socket.BTPROTO_L2CAP) as s:
2611
0 commit comments