From 163e8d868e1288aef04f5c5dc27afda261ad36f8 Mon Sep 17 00:00:00 2001 From: RJ Catalano Date: Sun, 20 Aug 2017 15:25:22 -0500 Subject: [PATCH] common/compiler: fix for go vet issues Signed-off-by: RJ Catalano --- common/compiler/solidity_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/compiler/solidity_test.go b/common/compiler/solidity_test.go index 795b38d0ca..bfd3fb242a 100644 --- a/common/compiler/solidity_test.go +++ b/common/compiler/solidity_test.go @@ -191,7 +191,7 @@ func TestSolcCompilerError(t *testing.T) { if err == nil { t.Fatal("Expected an error, got nil.") } else if !strings.Contains(err.Error(), "solc") { - t.Fatal("Expected error to come directly from compiler, got err from elsewhere: %v", err) + t.Fatalf("Expected error to come directly from compiler, got err from elsewhere: %v", err) } }