lntest/mpp_test: ensure ctx.alice and ctx.bob are shutdown

Not doing so prevents consecutive subtests from starting properly.
This commit is contained in:
Conner Fromknecht 2021-05-26 18:10:39 -07:00
parent ad0ecc4d58
commit a765ba1f3d
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

View File

@ -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)