From 4e53cf8b4934824ed9bf8ddd79e8ab48c5657c1d Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 5 Jan 2017 20:44:06 -0800 Subject: [PATCH] lnwallet: correct error message in txn subscription test --- lnwallet/interface_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnwallet/interface_test.go b/lnwallet/interface_test.go index 00e7dd72..84e5ce1c 100644 --- a/lnwallet/interface_test.go +++ b/lnwallet/interface_test.go @@ -1103,7 +1103,7 @@ func testTransactionSubscriptions(miner *rpctest.Harness, w *lnwallet.LightningW txDetail := <-txClient.ConfirmedTransactions() if txDetail.NumConfirmations != 1 { t.Fatalf("incorrect number of confs, expected %v got %v", - 0, txDetail.NumConfirmations) + 1, txDetail.NumConfirmations) } if txDetail.Value != outputAmt { t.Fatalf("incorrect output amt, expected %v got %v",