From d376315e4c7691b2388e69b27c2c3c6053c9fc73 Mon Sep 17 00:00:00 2001 From: James Benze Date: Thu, 30 Aug 2018 01:22:41 -0400 Subject: [PATCH] Update is.NewRelaxed documentation Looks like the example was copy-and-pasted from is.New, without being updated to say "NewRelaxed" --- is.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/is.go b/is.go index 848be11..b972398 100644 --- a/is.go +++ b/is.go @@ -189,9 +189,9 @@ func (is *I) New(t *testing.T) *I { // pattern: // // func Test(t *testing.T) { -// is := is.New(t) +// is := is.NewRelaxed(t) // t.Run("sub", func(t *testing.T) { -// is := is.New(t) +// is := is.NewRelaxed(t) // // TODO: test // }) // }