From 6165b9454fb5cb7d59a6538d654f68affc833a3b Mon Sep 17 00:00:00 2001 From: Cameron Moore Date: Mon, 29 Mar 2021 19:06:46 -0500 Subject: [PATCH] Identify test helper functions (#487) --- toml_testgen_support_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/toml_testgen_support_test.go b/toml_testgen_support_test.go index fa83cdb..5d4b0a0 100644 --- a/toml_testgen_support_test.go +++ b/toml_testgen_support_test.go @@ -13,6 +13,7 @@ import ( ) func testgenInvalid(t *testing.T, input string) { + t.Helper() t.Logf("Input TOML:\n%s", input) doc := map[string]interface{}{} @@ -25,6 +26,7 @@ func testgenInvalid(t *testing.T, input string) { } func testgenValid(t *testing.T, input string, jsonRef string) { + t.Helper() t.Logf("Input TOML:\n%s", input) doc := map[string]interface{}{}