summaryrefslogtreecommitdiffstats
path: root/tpl/math
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/math')
-rw-r--r--tpl/math/math.go3
-rw-r--r--tpl/math/math_test.go8
2 files changed, 0 insertions, 11 deletions
diff --git a/tpl/math/math.go b/tpl/math/math.go
index 47b7b8306..57e7baf12 100644
--- a/tpl/math/math.go
+++ b/tpl/math/math.go
@@ -26,9 +26,6 @@ func New() *Namespace {
// Namespace provides template functions for the "math" namespace.
type Namespace struct{}
-// Namespace returns a pointer to the current namespace instance.
-func (ns *Namespace) Namespace() *Namespace { return ns }
-
func (ns *Namespace) Add(a, b interface{}) (interface{}, error) {
return DoArithmetic(a, b, '+')
}
diff --git a/tpl/math/math_test.go b/tpl/math/math_test.go
index 649a2756e..40bed5539 100644
--- a/tpl/math/math_test.go
+++ b/tpl/math/math_test.go
@@ -21,14 +21,6 @@ import (
"github.com/stretchr/testify/require"
)
-func TestNamespace(t *testing.T) {
- t.Parallel()
-
- ns := New()
-
- assert.Equal(t, ns, ns.Namespace(), "object pointers should match")
-}
-
func TestBasicNSArithmetic(t *testing.T) {
t.Parallel()