From 2a61ccec962a1328d1ca6587fe9feecc3bbc5a29 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Mon, 19 Feb 2018 18:03:25 -0800 Subject: [PATCH] chainntnfs: fix new golang 1.10 vet/test warning --- chainntnfs/interface_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chainntnfs/interface_test.go b/chainntnfs/interface_test.go index e4521726..0fc02ac6 100644 --- a/chainntnfs/interface_test.go +++ b/chainntnfs/interface_test.go @@ -1116,7 +1116,7 @@ func testReorgConf(miner *rpctest.Harness, notifier chainntnfs.ChainNotifier, } if nodeHeight1 != nodeHeight2 { - t.Fatalf("expected both miners to be on the same height", + t.Fatalf("expected both miners to be on the same height: %v vs %v", nodeHeight1, nodeHeight2) } @@ -1190,7 +1190,7 @@ func testReorgConf(miner *rpctest.Harness, notifier chainntnfs.ChainNotifier, } if nodeHeight1 != nodeHeight2 { - t.Fatalf("expected both miners to be on the same height", + t.Fatalf("expected both miners to be on the same height: %v vs %v", nodeHeight1, nodeHeight2) }