aboutsummaryrefslogtreecommitdiffstats
path: root/modules/templates/vars/vars_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/templates/vars/vars_test.go')
-rw-r--r--modules/templates/vars/vars_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/templates/vars/vars_test.go b/modules/templates/vars/vars_test.go
index 8f421d9e4b..9b48167237 100644
--- a/modules/templates/vars/vars_test.go
+++ b/modules/templates/vars/vars_test.go
@@ -60,7 +60,7 @@ func TestExpandVars(t *testing.T) {
for _, kase := range kases {
t.Run(kase.tmpl, func(t *testing.T) {
res, err := Expand(kase.tmpl, kase.data)
- assert.EqualValues(t, kase.out, res)
+ assert.Equal(t, kase.out, res)
if kase.error {
assert.Error(t, err)
} else {