lnwallet: ensure created channels are stopped in ChanSync tests

This commit is contained in:
Olaoluwa Osuntokun 2017-11-13 22:42:57 -08:00
parent a655396616
commit 94ffb07b90
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

@ -3160,6 +3160,7 @@ func TestChanSyncOweRevocationAndCommit(t *testing.T) {
if err != nil {
t.Fatalf("unable to restart channel: %v", err)
}
defer bobChannel.Stop()
assertBobSendsRevokeAndCommit()
// We'll now finish the state transition by having Alice process both
@ -3308,6 +3309,7 @@ func TestChanSyncOweRevocationAndCommitForceTransition(t *testing.T) {
if err != nil {
t.Fatalf("unable to restart channel: %v", err)
}
defer bobChannel.Stop()
if len(bobMsgsToSend) != 2 {
t.Fatalf("expected bob to send %v messages, instead "+
"sends: %v", 2, spew.Sdump(bobMsgsToSend))