From 0a86df4a162ddd8311194d44231f69e94abd1d23 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Sun, 19 Jan 2014 21:41:52 -0600 Subject: [PATCH] Correct test print found by go vet. --- db_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_test.go b/db_test.go index 75fc6174..6a8b088f 100644 --- a/db_test.go +++ b/db_test.go @@ -30,7 +30,7 @@ func testNewestShaEmpty(t *testing.T, db btcdb.Db) { } if height != -1 { - t.Errorf("NewestSha wrong height got: %s, want %s", height, -1) + t.Errorf("NewestSha wrong height got: %d, want %d", height, -1) } }