diff options
author | Bjørn Erik Pedersen <[email protected]> | 2017-05-01 09:06:42 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2017-05-01 15:13:41 +0200 |
commit | 0e2260421e40c97d9d210724fb44cfdc15ea7855 (patch) | |
tree | 13a73d06a67b42584fcd20c08615418e0ec2fe1f /tpl/inflect | |
parent | 4714085a10835b9f4e8d4f699dc94e3120d8067e (diff) | |
download | hugo-0e2260421e40c97d9d210724fb44cfdc15ea7855.tar.gz hugo-0e2260421e40c97d9d210724fb44cfdc15ea7855.zip |
tpl: Fix the remaining template funcs namespace issues
See #3042
Diffstat (limited to 'tpl/inflect')
-rw-r--r-- | tpl/inflect/inflect.go | 3 | ||||
-rw-r--r-- | tpl/inflect/inflect_test.go | 8 |
2 files changed, 0 insertions, 11 deletions
diff --git a/tpl/inflect/inflect.go b/tpl/inflect/inflect.go index 9c13238b5..e66aee72f 100644 --- a/tpl/inflect/inflect.go +++ b/tpl/inflect/inflect.go @@ -28,9 +28,6 @@ func New() *Namespace { // Namespace provides template functions for the "inflect" namespace. type Namespace struct{} -// Namespace returns a pointer to the current namespace instance. -func (ns *Namespace) Namespace() *Namespace { return ns } - // Humanize returns the humanized form of a single parameter. // // If the parameter is either an integer or a string containing an integer diff --git a/tpl/inflect/inflect_test.go b/tpl/inflect/inflect_test.go index 028d5d9af..a2146a838 100644 --- a/tpl/inflect/inflect_test.go +++ b/tpl/inflect/inflect_test.go @@ -8,14 +8,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 TestInflect(t *testing.T) { t.Parallel() |