Add missing release() call

Signed-off-by: Graham <gpe@openrs2.org>
pull/132/head
Graham 4 years ago
parent 35e3be4120
commit e1404a1f7f
  1. 4
      protocol/src/test/kotlin/org/openrs2/protocol/js5/Js5ResponseEncoderTest.kt

@ -48,7 +48,9 @@ object Js5ResponseEncoderTest {
} }
read(encoded).use { expected -> read(encoded).use { expected ->
assertEquals(expected, channel.readOutbound()) channel.readOutbound<ByteBuf>().use { actual ->
assertEquals(expected, actual)
}
} }
} }

Loading…
Cancel
Save