2
0

Replace interface{} with any

This commit is contained in:
Jack Christensen
2022-04-09 09:12:55 -05:00
parent 95265a7421
commit f14fb3d692
106 changed files with 1045 additions and 1045 deletions
+3 -3
View File
@@ -101,9 +101,9 @@ func RunWithQueryExecModes(ctx context.Context, t *testing.T, ctr ConnTestRunner
}
type ValueRoundTripTest struct {
Param interface{}
Result interface{}
Test func(interface{}) bool
Param any
Result any
Test func(any) bool
}
func RunValueRoundTripTests(