From 64045fadfbb79e664520a8f927abf4119b7136b6 Mon Sep 17 00:00:00 2001 From: Colin Hoglund Date: Tue, 16 Aug 2022 11:44:57 -0700 Subject: [PATCH] add comment --- internal/env/testing.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/env/testing.go b/internal/env/testing.go index 743f528..99bca38 100644 --- a/internal/env/testing.go +++ b/internal/env/testing.go @@ -7,6 +7,7 @@ import ( "github.com/stretchr/testify/require" ) +// NewTestConfig is a helper for setting up a Config object and error checking func NewTestConfig(t *testing.T) *Config { conf, err := NewConfig(os.Stdout, os.Stderr) require.NoError(t, err)