mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-05-28 12:39:51 +02:00
itest: skip interceptor tests
This commit is contained in:
parent
eadbb53e56
commit
ef33706aa6
@ -587,6 +587,10 @@ type interceptorTestScenario struct {
|
||||
func newInterceptorTestScenario(
|
||||
ht *lntest.HarnessTest) *interceptorTestScenario {
|
||||
|
||||
if isLitd {
|
||||
ht.Skipf("skipping forward interceptor tests for litd")
|
||||
}
|
||||
|
||||
alice, bob := ht.Alice, ht.Bob
|
||||
carol := ht.NewNode("carol", nil)
|
||||
dave := ht.NewNode("dave", nil)
|
||||
|
@ -17,6 +17,10 @@ import (
|
||||
// testInvoiceHtlcModifierBasic tests the basic functionality of the invoice
|
||||
// HTLC modifier RPC server.
|
||||
func testInvoiceHtlcModifierBasic(ht *lntest.HarnessTest) {
|
||||
if isLitd {
|
||||
ht.Skipf("skipping HTLC modifier tests for litd")
|
||||
}
|
||||
|
||||
ts := newAcceptorTestScenario(ht)
|
||||
|
||||
alice, bob, carol := ts.alice, ts.bob, ts.carol
|
||||
|
Loading…
x
Reference in New Issue
Block a user