summaryrefslogtreecommitdiffstats
path: root/common/maps/params_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/maps/params_test.go')
-rw-r--r--common/maps/params_test.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/common/maps/params_test.go b/common/maps/params_test.go
index 5c799aae1..a070e6f60 100644
--- a/common/maps/params_test.go
+++ b/common/maps/params_test.go
@@ -20,13 +20,13 @@ import (
)
func TestGetNestedParam(t *testing.T) {
- m := map[string]interface{}{
+ m := map[string]any{
"string": "value",
"first": 1,
"with_underscore": 2,
- "nested": map[string]interface{}{
+ "nested": map[string]any{
"color": "blue",
- "nestednested": map[string]interface{}{
+ "nestednested": map[string]any{
"color": "green",
},
},
@@ -34,7 +34,7 @@ func TestGetNestedParam(t *testing.T) {
c := qt.New(t)
- must := func(keyStr, separator string, candidates ...Params) interface{} {
+ must := func(keyStr, separator string, candidates ...Params) any {
v, err := GetNestedParam(keyStr, separator, candidates...)
c.Assert(err, qt.IsNil)
return v
@@ -53,14 +53,14 @@ func TestGetNestedParam(t *testing.T) {
func TestGetNestedParamFnNestedNewKey(t *testing.T) {
c := qt.New(t)
- nested := map[string]interface{}{
+ nested := map[string]any{
"color": "blue",
}
- m := map[string]interface{}{
+ m := map[string]any{
"nested": nested,
}
- existing, nestedKey, owner, err := GetNestedParamFn("nested.new", ".", func(key string) interface{} {
+ existing, nestedKey, owner, err := GetNestedParamFn("nested.new", ".", func(key string) any {
return m[key]
})