File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ struct AsyncSocketTests {
120120 }
121121 }
122122
123- @Test
123+ @Test ( . disabled ( " problematic test as file descriptor can be re-opened by another parallel test " ) )
124124 func socketBytesReadChunk_Throws_WhenSocketIsClosed( ) async throws {
125125 let s1 = try await AsyncSocket . make ( )
126126 try s1. close ( )
@@ -169,7 +169,7 @@ struct AsyncSocketTests {
169169 }
170170 }
171171
172- @Test ( . disabled( " problematic test because file descriptor by openened by another parallel test " ) )
172+ @Test ( . disabled( " problematic test as file descriptor can be re-opened by another parallel test " ) )
173173 func socket_Throws_WhenAlreadyCLosed( ) async throws {
174174 let s1 = try await AsyncSocket . make ( )
175175
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ final class AsyncSocketTests: XCTestCase {
107107 await AsyncAssertThrowsError ( try await s1. read ( bytes: 5 ) , of: SocketError . self)
108108 }
109109
110- func testSocketBytesReadChunk_Throws_WhenSocketIsClosed ( ) async throws {
110+ func disabled_testSocketBytesReadChunk_Throws_WhenSocketIsClosed ( ) async throws {
111111 let s1 = try await AsyncSocket . make ( )
112112 try s1. close ( )
113113
You can’t perform that action at this time.
0 commit comments