@@ -156,8 +156,7 @@ struct HandshakerTests {
156156 #expect( versionMgr == tc. result)
157157 }
158158
159- @Test
160- func incompatible( ) async throws {
159+ @Test func incompatible( ) async throws {
161160 let uutTun = Handshaker (
162161 writeFD: pipeTM. fileHandleForWriting, dispatch: dispatchT, queue: queue, role: . tunnel,
163162 versions: [ ProtoVersion ( 1 , 8 ) ]
@@ -201,8 +200,7 @@ struct OneSidedHandshakerTests {
201200 )
202201 }
203202
204- @Test ( )
205- func badPreamble( ) async throws {
203+ @Test func badPreamble( ) async throws {
206204 let taskTun = Task {
207205 try await uut. handshake ( )
208206 }
@@ -214,8 +212,7 @@ struct OneSidedHandshakerTests {
214212 }
215213 }
216214
217- @Test ( . timeLimit( . minutes( 1 ) ) )
218- func badRole( ) async throws {
215+ @Test func badRole( ) async throws {
219216 let taskTun = Task {
220217 try await uut. handshake ( )
221218 }
@@ -227,8 +224,7 @@ struct OneSidedHandshakerTests {
227224 }
228225 }
229226
230- @Test ( . timeLimit( . minutes( 1 ) ) )
231- func badVersion( ) async throws {
227+ @Test func badVersion( ) async throws {
232228 let taskTun = Task {
233229 try await uut. handshake ( )
234230 }
@@ -240,8 +236,7 @@ struct OneSidedHandshakerTests {
240236 }
241237 }
242238
243- @Test ( . timeLimit( . minutes( 1 ) ) )
244- func mainline( ) async throws {
239+ @Test func mainline( ) async throws {
245240 let taskTun = Task {
246241 let v = try await uut. handshake ( )
247242 // close our pipe so that `readToEnd()` below succeeds.
0 commit comments