From f73e11089f2038335f3558ad0b72e391f0a8232c Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Tue, 20 Feb 2018 00:26:41 -0500 Subject: [PATCH] Fix test statement with formatting in fatal call --- physical/testing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/physical/testing.go b/physical/testing.go index 9022f2c0eb..c64b55ea44 100644 --- a/physical/testing.go +++ b/physical/testing.go @@ -29,7 +29,7 @@ func ExerciseBackend(t testing.TB, b Backend) { // Get should not fail, but be nil out, err := b.Get(context.Background(), "foo") if err != nil { - t.Fatal("initial get failed: %v", err) + t.Fatalf("initial get failed: %v", err) } if out != nil { t.Errorf("initial get was not nil: %v", out)