diff options
Diffstat (limited to 'coll/jsonpath_test.go')
| -rw-r--r-- | coll/jsonpath_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coll/jsonpath_test.go b/coll/jsonpath_test.go index a8bf02de..147fc2ea 100644 --- a/coll/jsonpath_test.go +++ b/coll/jsonpath_test.go @@ -8,8 +8,8 @@ import ( ) type ( - m = map[string]interface{} - ar = []interface{} + m = map[string]any + ar = []any ) func TestJSONPath(t *testing.T) { @@ -127,7 +127,7 @@ func TestJSONPath(t *testing.T) { } type storeType struct { Bicycle *bicycleType - safe interface{} + safe any } structIn := &storeType{ |
