aboutsummaryrefslogtreecommitdiff
path: root/internal/compress/flate
diff options
context:
space:
mode:
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)
}
}
}