Skip to content
Prev Previous commit
Next Next commit
accessor not needed
  • Loading branch information
dkz2 committed May 26, 2023
commit 067a943f893cf56e0fbbcb609d7dfe05d3d03a03
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ final class MemcachedResponseDecoderTests: XCTestCase {
XCTAssertNoThrow(try self.channel.finish())
}

private func testDecodeSetResponse(responseCode: [UInt8], expectedResponseCode: ResponseStatus, expectedFlags: ByteBuffer? = nil) throws {
func testDecodeSetResponse(responseCode: [UInt8], expectedResponseCode: ResponseStatus, expectedFlags: ByteBuffer? = nil) throws {
// Prepare a response buffer with a response code
var buffer = ByteBufferAllocator().buffer(capacity: 8)
buffer.writeBytes(responseCode)
Expand Down