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 {
309309 Issue . record ( " Connection reset test did not throw an error " )
310310
311311 } catch is CancellationError {
312- print ( " ++CancellationError " )
313312 Issue . record ( " Runtime client did not send connection closed error " )
314313 } catch let error as LambdaRuntimeError {
315- print ( " ++LambdaRuntimeError " )
316314 #expect( error. code == . connectionToControlPlaneLost)
317315 } catch let error as ChannelError {
318- print ( " ++ChannelError " )
319316 #expect( error == . ioOnClosedChannel)
320317 } catch let error as IOError {
321- print ( " ++IOError " )
322318 #expect( error. errnoCode == ECONNRESET || error. errnoCode == EPIPE)
323319 } catch {
324320 Issue . record ( " Unexpected error type: \( error) " )
You can’t perform that action at this time.
0 commit comments