Skip to content

Commit cbf9c5e

Browse files
committed
remove debugging print statements
1 parent 86ccbf4 commit cbf9c5e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Tests/AWSLambdaRuntimeTests/LambdaRuntimeClientTests.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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)")

0 commit comments

Comments
 (0)