summaryrefslogtreecommitdiff
path: root/src/pkg/compress/lzw/writer_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/compress/lzw/writer_test.go')
-rw-r--r--src/pkg/compress/lzw/writer_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/compress/lzw/writer_test.go b/src/pkg/compress/lzw/writer_test.go
index e5815a03d..82464ecd1 100644
--- a/src/pkg/compress/lzw/writer_test.go
+++ b/src/pkg/compress/lzw/writer_test.go
@@ -113,7 +113,7 @@ func benchmarkEncoder(b *testing.B, n int) {
runtime.GC()
b.StartTimer()
for i := 0; i < b.N; i++ {
- w := NewWriter(devNull{}, LSB, 8)
+ w := NewWriter(ioutil.Discard, LSB, 8)
w.Write(buf1)
w.Close()
}