From 6b82d9795d59a9f708f86ee7112a83c7a23497da Mon Sep 17 00:00:00 2001 From: Vinothkumar Date: Tue, 10 Dec 2024 10:12:13 +0000 Subject: [PATCH] small tweaks --- rpc_util_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/rpc_util_test.go b/rpc_util_test.go index 713d3f98dc13..4b7e95d70277 100644 --- a/rpc_util_test.go +++ b/rpc_util_test.go @@ -358,6 +358,7 @@ func TestDecompress(t *testing.T) { for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { compressedMsg := compressInput(tt.input) + output, numSliceInBuf, err := decompress(tt.compressor, compressedMsg, tt.maxReceiveMessageSize, mem.DefaultBufferPool()) var wantMsg mem.BufferSlice if tt.want != nil {