File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Tests/AWSLambdaRuntimeTests Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -309,16 +309,12 @@ struct LambdaRuntimeClientTests {
309
309
Issue . record ( " Connection reset test did not throw an error " )
310
310
311
311
} catch is CancellationError {
312
- print ( " ++CancellationError " )
313
312
Issue . record ( " Runtime client did not send connection closed error " )
314
313
} catch let error as LambdaRuntimeError {
315
- print ( " ++LambdaRuntimeError " )
316
314
#expect( error. code == . connectionToControlPlaneLost)
317
315
} catch let error as ChannelError {
318
- print ( " ++ChannelError " )
319
316
#expect( error == . ioOnClosedChannel)
320
317
} catch let error as IOError {
321
- print ( " ++IOError " )
322
318
#expect( error. errnoCode == ECONNRESET || error. errnoCode == EPIPE)
323
319
} catch {
324
320
Issue . record ( " Unexpected error type: \( error) " )
You can’t perform that action at this time.
0 commit comments