Skip to content

Commit 37dbf6f

Browse files
committed
Fix failing test
1 parent 41691f9 commit 37dbf6f

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

tests/suite/test_socket_stdlib.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def load_tests(loader, standard_tests, pattern):
3737
test.test_socket.TestSocketSharing('testTypes'), # https://github.com/IronLanguages/ironpython3/issues/1226
3838
test.test_socket.UnbufferedFileObjectClassTestCase('testSmallReadNonBlocking'), # TODO: figure out
3939
]
40-
if is_linux or (is_osx and net_version < (10, 0)):
40+
if is_mono or (is_osx and net_version < (10, 0)):
4141
failing_tests += [
4242
test.test_socket.NonBlockingTCPTests('testRecv'), # TODO: figure out
4343
]
@@ -63,10 +63,6 @@ def load_tests(loader, standard_tests, pattern):
6363
skip_tests += [
6464
test.test_socket.NonBlockingTCPTests('testAccept')
6565
]
66-
if is_osx: # TODO: figure out
67-
skip_tests += [
68-
test.test_socket.NonBlockingTCPTests('testRecv'),
69-
]
7066

7167
return generate_suite(tests, failing_tests, skip_tests)
7268

0 commit comments

Comments
 (0)