From a765ba1f3d322b31c64e1f0fce9695f534e60fe0 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Wed, 26 May 2021 18:10:39 -0700 Subject: [PATCH] lntest/mpp_test: ensure ctx.alice and ctx.bob are shutdown Not doing so prevents consecutive subtests from starting properly. --- lntest/itest/lnd_mpp_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lntest/itest/lnd_mpp_test.go b/lntest/itest/lnd_mpp_test.go index 6e64400f3..5290fcae8 100644 --- a/lntest/itest/lnd_mpp_test.go +++ b/lntest/itest/lnd_mpp_test.go @@ -344,6 +344,8 @@ func (c *mppTestContext) closeChannels() { } func (c *mppTestContext) shutdownNodes() { + shutdownAndAssert(c.net, c.t, c.alice) + shutdownAndAssert(c.net, c.t, c.bob) shutdownAndAssert(c.net, c.t, c.carol) shutdownAndAssert(c.net, c.t, c.dave) shutdownAndAssert(c.net, c.t, c.eve)