injae-kim commented on PR #23563:
URL: https://github.com/apache/flink/pull/23563#issuecomment-2304167873
```
@Test
public void testWriteBytes() {
DataOutputSerializer serializer = new DataOutputSerializer(1);
String givenStr = "Hello, World!";
assertThatCode(() ->
serializer.writeBytes(givenStr)).doesNotThrowAnyException();
ByteBuffer wrote = serializer.wrapAsByteBuffer();
String actual = Charset.defaultCharset().decode(wrote).toString();
assertThat(actual).isEqualTo(givenStr);
}
```
with current code, above test failed isn't it? @all-cloudz
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]