diff options
Diffstat (limited to 'executor/style_test.go')
| -rw-r--r-- | executor/style_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/executor/style_test.go b/executor/style_test.go index 14a030695..501b58fea 100644 --- a/executor/style_test.go +++ b/executor/style_test.go @@ -5,7 +5,7 @@ package executor import ( "bytes" - "io/ioutil" + "os" "path/filepath" "regexp" "sort" @@ -160,7 +160,7 @@ if (foo) { } } for _, file := range executorFiles(t) { - data, err := ioutil.ReadFile(file) + data, err := os.ReadFile(file) if err != nil { t.Fatal(err) } |
