diff --git a/docs/release-notes/release-notes-0.14.0.md b/docs/release-notes/release-notes-0.14.0.md index 4cf56111..7780ca82 100644 --- a/docs/release-notes/release-notes-0.14.0.md +++ b/docs/release-notes/release-notes-0.14.0.md @@ -105,6 +105,8 @@ you. * [Fixed typo in `dest_custom_records` description comment](https://github.com/lightningnetwork/lnd/pull/5541). +* [Fixed payment test error message.](https://github.com/lightningnetwork/lnd/pull/5559) + * [Bumped version of `github.com/miekg/dns` library to fix a Dependabot alert](https://github.com/lightningnetwork/lnd/pull/5576). @@ -162,10 +164,11 @@ change](https://github.com/lightningnetwork/lnd/pull/5613). # Contributors (Alphabetical Order) * Andras Banki-Horvath +* de6df1re * ErikEk * Eugene Siegel * Martin Habovstiak -* Zero-1729 * Oliver Gugger * xanoni * Yong Yu +* Zero-1729 diff --git a/lntest/itest/lnd_payment_test.go b/lntest/itest/lnd_payment_test.go index 45455285..62796e3d 100644 --- a/lntest/itest/lnd_payment_test.go +++ b/lntest/itest/lnd_payment_test.go @@ -156,7 +156,7 @@ func testListPayments(net *lntest.NetworkHarness, t *harnessTest) { } if len(paymentsResp.Payments) != 0 { t.Fatalf("incorrect number of payments, got %v, want %v", - len(paymentsRespInit.Payments), 0) + len(paymentsResp.Payments), 0) } closeChannelAndAssert(t, net, net.Alice, chanPoint, false)