aboutsummaryrefslogtreecommitdiff
path: root/internal/compress/flate
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-07 00:42:21 +0800
committerGravatar Runxi Yu2026-03-07 00:42:21 +0800
commitaa048b1320e5ae4a72a1927476460955a8727c52 (patch)
tree0728ab4637e0b2117df8d3052cf3061a6123e8ac /internal/compress/flate
parentgo.mod: Bump to 1.26 (diff)
signatureNo signature
internal/compress/flate: Fix formatting bug v0.1.71
Diffstat (limited to 'internal/compress/flate')
-rw-r--r--internal/compress/flate/inflate_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/compress/flate/inflate_test.go b/internal/compress/flate/inflate_test.go
index 7a58739b..f163695f 100644
--- a/internal/compress/flate/inflate_test.go
+++ b/internal/compress/flate/inflate_test.go
@@ -37,7 +37,7 @@ func TestReset(t *testing.T) {
for i, s := range ss {
if s != inflated[i].String() {
- t.Errorf("inflated[%d]:\ngot %q\nwant %q", i, inflated[i], s)
+ t.Errorf("inflated[%d]:\ngot %q\nwant %q", i, inflated[i].String(), s)
}
}
}
@@ -94,7 +94,7 @@ func TestResetDict(t *testing.T) {
for i, s := range ss {
if s != inflated[i].String() {
- t.Errorf("inflated[%d]:\ngot %q\nwant %q", i, inflated[i], s)
+ t.Errorf("inflated[%d]:\ngot %q\nwant %q", i, inflated[i].String(), s)
}
}
}