summaryrefslogtreecommitdiffstats
path: root/common/types/types_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/types/types_test.go')
-rw-r--r--common/types/types_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/types/types_test.go b/common/types/types_test.go
index 7c5cba659..6f13ae834 100644
--- a/common/types/types_test.go
+++ b/common/types/types_test.go
@@ -25,5 +25,5 @@ func TestKeyValues(t *testing.T) {
kv := NewKeyValuesStrings("key", "a1", "a2")
c.Assert(kv.KeyString(), qt.Equals, "key")
- c.Assert(kv.Values, qt.DeepEquals, []interface{}{"a1", "a2"})
+ c.Assert(kv.Values, qt.DeepEquals, []any{"a1", "a2"})
}