add a buffer pool test for wrong-sized puts

This commit is contained in:
Lucas Clemente 2016-08-06 17:45:32 +02:00
parent 3e42d1da0f
commit 0696cd51bf
2 changed files with 6 additions and 1 deletions

View file

@ -14,7 +14,6 @@ func getPacketBuffer() []byte {
func putPacketBuffer(buf []byte) {
if cap(buf) != int(protocol.MaxPacketSize) {
println(buf)
panic("putPacketBuffer called with packet of wrong size!")
}
bufferPool.Put(buf[:0])