Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"path"
"path/filepath"
Expand All @@ -41,7 +40,7 @@ func snakeToPascal(s string) string {

func readTestTableFile(t *testing.T, dir string) *testTableFile {
t.Helper()
data, err := ioutil.ReadFile(dir)
data, err := os.ReadFile(dir)
if err != nil {
t.Error("Error reading file:", err)
}
Expand Down