mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-30 22:39:58 +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 media
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"sort"
|
||||
"strings"
|
||||
@@ -190,7 +190,7 @@ func TestFromContent(t *testing.T) {
|
||||
for _, filename := range files {
|
||||
name := filepath.Base(filename)
|
||||
c.Run(name, func(c *qt.C) {
|
||||
content, err := ioutil.ReadFile(filename)
|
||||
content, err := os.ReadFile(filename)
|
||||
c.Assert(err, qt.IsNil)
|
||||
ext := strings.TrimPrefix(paths.Ext(filename), ".")
|
||||
var exts []string
|
||||
@@ -217,7 +217,7 @@ func TestFromContentFakes(t *testing.T) {
|
||||
for _, filename := range files {
|
||||
name := filepath.Base(filename)
|
||||
c.Run(name, func(c *qt.C) {
|
||||
content, err := ioutil.ReadFile(filename)
|
||||
content, err := os.ReadFile(filename)
|
||||
c.Assert(err, qt.IsNil)
|
||||
ext := strings.TrimPrefix(paths.Ext(filename), ".")
|
||||
got := FromContent(mtypes, []string{ext}, content)
|
||||
|
Reference in New Issue
Block a user