aboutsummaryrefslogtreecommitdiff
path: root/internal/zlibx/decompress_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/zlibx/decompress_test.go')
-rw-r--r--internal/zlibx/decompress_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/zlibx/decompress_test.go b/internal/zlibx/decompress_test.go
index 2b9f0672..bea348d2 100644
--- a/internal/zlibx/decompress_test.go
+++ b/internal/zlibx/decompress_test.go
@@ -155,7 +155,7 @@ func TestDecompressSizedUsesHint(t *testing.T) {
compressed := compressZlib(t, payload)
const hint = 1 << 20
- out, err := DecompressSized(compressed, hint)
+ out, _, err := DecompressSized(compressed, hint)
if err != nil {
t.Fatalf("DecompressSized: %v", err)
}