From 840708a3e7abe7c33913c50e499f00b7c6b5cc40 Mon Sep 17 00:00:00 2001 From: "Owain G. Ainsworth" Date: Tue, 6 Aug 2013 18:00:47 +0100 Subject: [PATCH] Fix up some format strings to appease go vet. Extra argument present when no format directive for it (and not needed, either). --- sqlite3/operational_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlite3/operational_test.go b/sqlite3/operational_test.go index 9cfa7b6e7..6caae7f5b 100644 --- a/sqlite3/operational_test.go +++ b/sqlite3/operational_test.go @@ -147,12 +147,12 @@ out: } if blkid != height { - t.Errorf("height doe not match latest block height %v %v", blkid, height, err) + t.Errorf("height does not match latest block height %v %v", blkid, height) } blkSha, _ := block.Sha() if *newSha != *blkSha { - t.Errorf("Newest block sha does not match freshly inserted one %v %v ", newSha, blkSha, err) + t.Errorf("Newest block sha does not match freshly inserted one %v %v ", newSha, blkSha) } }