mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-18 21:11:19 +02:00
Replace deprecated ioutil with io and os
https://pkg.go.dev/io/ioutil is deprecated since Go 1.16.
This commit is contained in:
committed by
Bjørn Erik Pedersen
parent
97b010f521
commit
d453c12742
@@ -15,7 +15,7 @@ package hugofs
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"io"
|
||||
"path/filepath"
|
||||
"sort"
|
||||
"testing"
|
||||
@@ -267,7 +267,7 @@ func TestRootMappingFsMount(t *testing.T) {
|
||||
tf, err := testfilem.Open()
|
||||
c.Assert(err, qt.IsNil)
|
||||
defer tf.Close()
|
||||
b, err := ioutil.ReadAll(tf)
|
||||
b, err := io.ReadAll(tf)
|
||||
c.Assert(err, qt.IsNil)
|
||||
c.Assert(string(b), qt.Equals, "some no content")
|
||||
|
||||
|
Reference in New Issue
Block a user