mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 14:22:37 +01:00
itest: skip interceptor tests
This commit is contained in:
parent
eadbb53e56
commit
ef33706aa6
2 changed files with 8 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue