LineBasedFrameDecoderTest cleanup (#230)

Remove extraneous `print` statement.

Co-authored-by: Rick Newton-Rogers <rnro@apple.com>
This commit is contained in:
Rick Newton-Rogers 2024-09-11 17:04:50 +01:00 committed by GitHub
parent 4f888611eb
commit 2e9746cfc5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -279,9 +279,7 @@ class LineBasedFrameDecoderTest: XCTestCase {
switch callCount {
case 1:
XCTAssertEqual(ByteBuffer(string: "1"), line)
XCTAssertNoThrow(try b2mp.finishProcessing(seenEOF: true) { line in
print(line)
})
XCTAssertNoThrow(try b2mp.finishProcessing(seenEOF: true) { _ in } )
case 2:
XCTAssertEqual(ByteBuffer(string: ""), line)
case 3: