From 9323225cc0a0301ed9a004afab152eb9eafdb1fa Mon Sep 17 00:00:00 2001 From: DanielWei Date: Wed, 10 Sep 2025 11:31:34 +0800 Subject: [PATCH] Update ApacheHttpClientAdapterTest.java fix gzip byte array --- .../httpclient/apache/common/ApacheHttpClientAdapterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arex-instrumentation/httpclient/arex-httpclient-apache-v4/src/test/java/io/arex/inst/httpclient/apache/common/ApacheHttpClientAdapterTest.java b/arex-instrumentation/httpclient/arex-httpclient-apache-v4/src/test/java/io/arex/inst/httpclient/apache/common/ApacheHttpClientAdapterTest.java index 7fc1c698e..8f0252ac4 100644 --- a/arex-instrumentation/httpclient/arex-httpclient-apache-v4/src/test/java/io/arex/inst/httpclient/apache/common/ApacheHttpClientAdapterTest.java +++ b/arex-instrumentation/httpclient/arex-httpclient-apache-v4/src/test/java/io/arex/inst/httpclient/apache/common/ApacheHttpClientAdapterTest.java @@ -79,7 +79,7 @@ static Stream getRequestBytesCase() { HttpPost nullEntityRequest = new HttpPost(); return Stream.of( - arguments(httpPostWithGzipEntity, new byte[]{31, -117, 8, 0, 0, 0, 0, 0, 0, -1, -53, -51, 79, -50, 6, 0, 107, -4, 51, 63, 4, 0, 0, 0}), + arguments(httpPostWithGzipEntity, new byte[]{31, -117, 8, 0, 0, 0, 0, 0, 0, 0, -53, -51, 79, -50, 6, 0, 107, -4, 51, 63, 4, 0, 0, 0}), arguments(request, new byte[0]), arguments(httpPost, "mock".getBytes()), arguments(httpPostWithoutContent, new byte[0]),