summaryrefslogtreecommitdiff
path: root/funcs/math_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'funcs/math_test.go')
-rw-r--r--funcs/math_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/math_test.go b/funcs/math_test.go
index 0436c891..e816bb86 100644
--- a/funcs/math_test.go
+++ b/funcs/math_test.go
@@ -22,7 +22,7 @@ func TestCreateMathFuncs(t *testing.T) {
fmap := CreateMathFuncs(ctx)
actual := fmap["math"].(func() interface{})
- assert.Same(t, ctx, actual().(*MathFuncs).ctx)
+ assert.Equal(t, ctx, actual().(*MathFuncs).ctx)
})
}
}