Skip to content

Commit

Permalink
Update codec/codec-api/src/test/java/com/alipay/sofa/rpc/codec/biz2/B…
Browse files Browse the repository at this point in the history
…zip2RpcCompressorTest.java

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
EvenLjj and coderabbitai[bot] authored May 9, 2024
1 parent 6978230 commit 0a054bf
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public class Bzip2RpcCompressorTest {
public void testCompression() throws UnsupportedEncodingException {
Bzip2RpcCompressor compressor = new Bzip2RpcCompressor();
byte[] bs = compressor.compress(TEST_STR.getBytes("utf-8"));
Assert.assertNotNull(TEST_STR);

String s1 = new String(compressor.deCompress(bs), "utf-8");
Assert.assertEquals(TEST_STR, s1);
Expand Down

0 comments on commit 0a054bf

Please sign in to comment.