From 674f454e702ce8beb4b96d0a7191e30f0fb3abba Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Mon, 25 May 2015 08:27:54 -0600 Subject: [PATCH] t.Fatal -> t.Fatalf --- config/parse/parsing_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/parse/parsing_test.go b/config/parse/parsing_test.go index 8b19d6b2..de793de3 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) {