From dc280521dd6817c085f073ca4157d7262bb8689a Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Mon, 16 Jan 2017 17:08:48 -0800 Subject: [PATCH] test: fix logging messages for funding push test --- lnd_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lnd_test.go b/lnd_test.go index 92956b58..0a5a12b5 100644 --- a/lnd_test.go +++ b/lnd_test.go @@ -231,11 +231,11 @@ func testBasicChannelFunding(net *networkHarness, t *harnessTest) { t.Fatalf("unable to get bobs's balance: %v", err) } if aliceBal.Balance != int64(chanAmt-pushAmt) { - t.Fatalf("alice's balance is incorrect: expected %v got %x", + t.Fatalf("alice's balance is incorrect: expected %v got %v", chanAmt-pushAmt, aliceBal) } if bobBal.Balance != int64(pushAmt) { - t.Fatalf("bob's balance is incorrect: expected %v got %x", + t.Fatalf("bob's balance is incorrect: expected %v got %v", pushAmt, bobBal) }