From 4d2a12e5523d5409fd5e5004d4c1af9e27c4da7a Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Tue, 8 Dec 2020 16:26:57 +0100 Subject: [PATCH] itest: fix incorrect error message --- lntest/itest/lnd_multi-hop_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lntest/itest/lnd_multi-hop_test.go b/lntest/itest/lnd_multi-hop_test.go index 3707ae11..a7086310 100644 --- a/lntest/itest/lnd_multi-hop_test.go +++ b/lntest/itest/lnd_multi-hop_test.go @@ -272,7 +272,7 @@ func createThreeHopNetwork(t *harnessTest, net *lntest.NetworkHarness, ctxt, _ = context.WithTimeout(context.Background(), defaultTimeout) err = net.SendCoins(ctxt, btcutil.SatoshiPerBitcoin, carol) if err != nil { - t.Fatalf("unable to send coins to Alice: %v", err) + t.Fatalf("unable to send coins to Carol: %v", err) } }