From c3198e4c794f2052786af5ca5ead9176961f29b4 Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Fri, 10 May 2024 04:47:34 +0200 Subject: [PATCH] parser_test.go: did not show the correct section name --- parser_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser_test.go b/parser_test.go index 0c64d15..4a8ffe5 100644 --- a/parser_test.go +++ b/parser_test.go @@ -177,7 +177,7 @@ func parserTest(t *testing.T, section string, inputs []inputType) { ctx := NewSimpleFuncStore() parser := NewParser(ctx) - logTest(t, i+1, "Iterator", input.source, input.wantResult, input.wantErr) + logTest(t, i+1, section, input.source, input.wantResult, input.wantErr) r := strings.NewReader(input.source) scanner := NewScanner(r, DefaultTranslations())