From 0e2260421e40c97d9d210724fb44cfdc15ea7855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Mon, 1 May 2017 09:06:42 +0200 Subject: tpl: Fix the remaining template funcs namespace issues See #3042 --- tpl/encoding/encoding.go | 3 --- tpl/encoding/encoding_test.go | 8 -------- 2 files changed, 11 deletions(-) (limited to 'tpl/encoding') diff --git a/tpl/encoding/encoding.go b/tpl/encoding/encoding.go index 311edb209..4b02c426a 100644 --- a/tpl/encoding/encoding.go +++ b/tpl/encoding/encoding.go @@ -29,9 +29,6 @@ func New() *Namespace { // Namespace provides template functions for the "encoding" namespace. type Namespace struct{} -// Namespace returns a pointer to the current namespace instance. -func (ns *Namespace) Namespace() *Namespace { return ns } - // Base64Decode returns the base64 decoding of the given content. func (ns *Namespace) Base64Decode(content interface{}) (string, error) { conv, err := cast.ToStringE(content) diff --git a/tpl/encoding/encoding_test.go b/tpl/encoding/encoding_test.go index d03362866..8242561b6 100644 --- a/tpl/encoding/encoding_test.go +++ b/tpl/encoding/encoding_test.go @@ -25,14 +25,6 @@ import ( type tstNoStringer struct{} -func TestNamespace(t *testing.T) { - t.Parallel() - - ns := New() - - assert.Equal(t, ns, ns.Namespace(), "object pointers should match") -} - func TestBase64Decode(t *testing.T) { t.Parallel() -- cgit v1.2.3