diff options
-rw-r--r-- | config/parse/parsing_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/parse/parsing_test.go b/config/parse/parsing_test.go index 8b19d6b2e..de793de3b 100644 --- a/config/parse/parsing_test.go +++ b/config/parse/parsing_test.go @@ -340,7 +340,7 @@ func TestParseAll(t *testing.T) { }`) blocks, err := p.parseAll() if err != nil { - t.Fatal("Expected there to not be an error, but there was: %v", err) + t.Fatalf("Expected there to not be an error, but there was: %v", err) } if !reflect.DeepEqual(blocks[1].Tokens, blocks[2].Tokens) { |