all: gofmt -w -r 'interface{} -> any' .

Updates #9687
This commit is contained in:
Bjørn Erik Pedersen
2022-03-17 22:03:27 +01:00
parent 423594e03a
commit b80853de90
342 changed files with 2118 additions and 2102 deletions

View File

@@ -33,8 +33,8 @@ func TestChomp(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
expect interface{}
s any
expect any
}{
{"\n a\n", "\n a"},
{"\n a\n\n", "\n a"},
@@ -68,8 +68,8 @@ func TestContains(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
substr interface{}
s any
substr any
expect bool
isErr bool
}{
@@ -106,8 +106,8 @@ func TestContainsAny(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
substr interface{}
s any
substr any
expect bool
isErr bool
}{
@@ -150,8 +150,8 @@ func TestCountRunes(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
expect interface{}
s any
expect any
}{
{"foo bar", 6},
{"旁边", 2},
@@ -177,8 +177,8 @@ func TestRuneCount(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
expect interface{}
s any
expect any
}{
{"foo bar", 7},
{"旁边", 2},
@@ -204,8 +204,8 @@ func TestCountWords(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
expect interface{}
s any
expect any
}{
{"Do Be Do Be Do", 5},
{"旁边", 2},
@@ -234,9 +234,9 @@ func TestHasPrefix(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
prefix interface{}
expect interface{}
s any
prefix any
expect any
isErr bool
}{
{"abcd", "ab", true, false},
@@ -268,9 +268,9 @@ func TestHasSuffix(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
suffix interface{}
expect interface{}
s any
suffix any
expect any
isErr bool
}{
{"abcd", "cd", true, false},
@@ -302,11 +302,11 @@ func TestReplace(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
old interface{}
new interface{}
limit interface{}
expect interface{}
s any
old any
new any
limit any
expect any
}{
{"aab", "a", "b", nil, "bbb"},
{"11a11", 1, 2, nil, "22a22"},
@@ -346,10 +346,10 @@ func TestSliceString(t *testing.T) {
var err error
for _, test := range []struct {
v1 interface{}
v2 interface{}
v3 interface{}
expect interface{}
v1 any
v2 any
v3 any
expect any
}{
{"abc", 1, 2, "b"},
{"abc", 1, 3, "bc"},
@@ -408,9 +408,9 @@ func TestSplit(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
v1 interface{}
v1 any
v2 string
expect interface{}
expect any
}{
{"a, b", ", ", []string{"a", "b"}},
{"a & b & c", " & ", []string{"a", "b", "c"}},
@@ -437,10 +437,10 @@ func TestSubstr(t *testing.T) {
var err error
for _, test := range []struct {
v1 interface{}
v2 interface{}
v3 interface{}
expect interface{}
v1 any
v2 any
v3 any
expect any
}{
{"abc", 1, 2, "bc"},
{"abc", 0, 1, "a"},
@@ -511,8 +511,8 @@ func TestTitle(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
expect interface{}
s any
expect any
}{
{"test", "Test"},
{template.HTML("hypertext"), "Hypertext"},
@@ -538,8 +538,8 @@ func TestToLower(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
expect interface{}
s any
expect any
}{
{"TEST", "test"},
{template.HTML("LoWeR"), "lower"},
@@ -565,8 +565,8 @@ func TestToUpper(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
expect interface{}
s any
expect any
}{
{"test", "TEST"},
{template.HTML("UpPeR"), "UPPER"},
@@ -592,9 +592,9 @@ func TestTrim(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
cutset interface{}
expect interface{}
s any
cutset any
expect any
}{
{"abba", "a", "bb"},
{"abba", "ab", ""},
@@ -626,9 +626,9 @@ func TestTrimLeft(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
cutset interface{}
expect interface{}
s any
cutset any
expect any
}{
{"abba", "a", "bba"},
{"abba", "ab", ""},
@@ -661,9 +661,9 @@ func TestTrimPrefix(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
prefix interface{}
expect interface{}
s any
prefix any
expect any
}{
{"aabbaa", "a", "abbaa"},
{"aabb", "b", "aabb"},
@@ -691,9 +691,9 @@ func TestTrimRight(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
cutset interface{}
expect interface{}
s any
cutset any
expect any
}{
{"abba", "a", "abb"},
{"abba", "ab", ""},
@@ -726,9 +726,9 @@ func TestTrimSuffix(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
suffix interface{}
expect interface{}
s any
suffix any
expect any
}{
{"aabbaa", "a", "aabba"},
{"aabb", "b", "aab"},
@@ -756,9 +756,9 @@ func TestRepeat(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
s interface{}
n interface{}
expect interface{}
s any
n any
expect any
}{
{"yo", "2", "yoyo"},
{"~", "16", "~~~~~~~~~~~~~~~~"},