summaryrefslogtreecommitdiffstats
path: root/common/math/math_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/math/math_test.go')
-rw-r--r--common/math/math_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/math/math_test.go b/common/math/math_test.go
index a11701862..89e391ce0 100644
--- a/common/math/math_test.go
+++ b/common/math/math_test.go
@@ -24,10 +24,10 @@ func TestDoArithmetic(t *testing.T) {
c := qt.New(t)
for _, test := range []struct {
- a interface{}
- b interface{}
+ a any
+ b any
op rune
- expect interface{}
+ expect any
}{
{3, 2, '+', int64(5)},
{3, 2, '-', int64(1)},