@@ -58,7 +58,7 @@ func testForwardInterceptorDedupHtlc(ht *lntest.HarnessTest) {
5858 cpAB , cpBC := resp [0 ], resp [1 ]
5959
6060 // Make sure Alice is aware of channel Bob=>Carol.
61- ht .AssertTopologyChannelOpen (alice , cpBC )
61+ ht .AssertChannelInGraph (alice , cpBC )
6262
6363 // Connect the interceptor.
6464 interceptor , cancelInterceptor := bob .RPC .HtlcInterceptor ()
@@ -209,7 +209,7 @@ func testForwardInterceptorBasic(ht *lntest.HarnessTest) {
209209 cpAB , cpBC := resp [0 ], resp [1 ]
210210
211211 // Make sure Alice is aware of channel Bob=>Carol.
212- ht .AssertTopologyChannelOpen (alice , cpBC )
212+ ht .AssertChannelInGraph (alice , cpBC )
213213
214214 // Connect the interceptor.
215215 interceptor , cancelInterceptor := bob .RPC .HtlcInterceptor ()
@@ -370,7 +370,7 @@ func testForwardInterceptorModifiedHtlc(ht *lntest.HarnessTest) {
370370 cpAB , cpBC := resp [0 ], resp [1 ]
371371
372372 // Make sure Alice is aware of channel Bob=>Carol.
373- ht .AssertTopologyChannelOpen (alice , cpBC )
373+ ht .AssertChannelInGraph (alice , cpBC )
374374
375375 // Connect an interceptor to Bob's node.
376376 bobInterceptor , cancelBobInterceptor := bob .RPC .HtlcInterceptor ()
@@ -478,7 +478,7 @@ func testForwardInterceptorWireRecords(ht *lntest.HarnessTest) {
478478 cpAB , cpBC , cpCD := resp [0 ], resp [1 ], resp [2 ]
479479
480480 // Make sure Alice is aware of channel Bob=>Carol.
481- ht .AssertTopologyChannelOpen (alice , cpBC )
481+ ht .AssertChannelInGraph (alice , cpBC )
482482
483483 // Connect an interceptor to Bob's node.
484484 bobInterceptor , cancelBobInterceptor := bob .RPC .HtlcInterceptor ()
@@ -609,8 +609,8 @@ func testForwardInterceptorRestart(ht *lntest.HarnessTest) {
609609 cpAB , cpBC , cpCD := resp [0 ], resp [1 ], resp [2 ]
610610
611611 // Make sure Alice is aware of channels Bob=>Carol and Carol=>Dave.
612- ht .AssertTopologyChannelOpen (alice , cpBC )
613- ht .AssertTopologyChannelOpen (alice , cpCD )
612+ ht .AssertChannelInGraph (alice , cpBC )
613+ ht .AssertChannelInGraph (alice , cpCD )
614614
615615 // Connect an interceptor to Bob's node.
616616 bobInterceptor , cancelBobInterceptor := bob .RPC .HtlcInterceptor ()
0 commit comments