Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bpo-27584: Fixes for V4
Fixed white space error
  • Loading branch information
caavery committed Sep 5, 2017
commit d11a8db84242729da05c4d5bffe5228c91c4dfd6
2 changes: 1 addition & 1 deletion Lib/test/test_socket.py
Original file line number Diff line number Diff line change
Expand Up @@ -1934,7 +1934,7 @@ def _testCongestion(self):
r, w, x = select.select([self.serv], [], [], 3.0)
self.assertIn(self.serv, r)


@unittest.skipIf(fcntl is None, "need fcntl")
@unittest.skipUnless(HAVE_SOCKET_VSOCK,
'VSOCK sockets required for this test.')
Expand Down