Merge pull request #9492 from yyforyongyu/itest-flake-interceptor

itest: fix flake in `testForwardInterceptorRestart`
This commit is contained in:
Oliver Gugger 2025-02-10 05:50:13 -06:00 committed by GitHub
commit 6bf6603fb8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -357,7 +357,7 @@ func testForwardInterceptorRestart(ht *lntest.HarnessTest) {
cfgs := [][]string{nil, nil, nil, nil}
// Open and wait for channels.
_, nodes := ht.CreateSimpleNetwork(cfgs, p)
chanPoints, nodes := ht.CreateSimpleNetwork(cfgs, p)
alice, bob, carol, dave := nodes[0], nodes[1], nodes[2], nodes[3]
// Connect an interceptor to Bob's node.
@ -424,6 +424,13 @@ func testForwardInterceptorRestart(ht *lntest.HarnessTest) {
require.NoError(ht, restartAlice(), "failed to restart alice")
// Once restarted, we will wait until the reestabilishment of the links,
// Alice=>Bob and Bob=>Carol, finish before calling the interceptors. We
// check this by asserting that Carol is now aware of the two channels
// being active again.
ht.AssertChannelInGraph(carol, chanPoints[0])
ht.AssertChannelInGraph(carol, chanPoints[1])
// We should get another notification about the held HTLC.
packet = ht.ReceiveHtlcInterceptor(bobInterceptor)