itest: remove potential parallel usage of the watchtower default port

This commit is contained in:
yyforyongyu 2023-05-04 19:11:03 +08:00
parent 4bbb4ed978
commit 3f2675f10d
No known key found for this signature in database
GPG Key ID: 9BCD95C4FF296868

View File

@ -310,11 +310,6 @@ var allTestCases = []*lntest.TestCase{
Name: "revoked uncooperative close retribution remote hodl",
TestFunc: testRevokedCloseRetributionRemoteHodl,
},
{
Name: "revoked uncooperative close retribution altruist " +
"watchtower",
TestFunc: testRevokedCloseRetributionAltruistWatchtower,
},
{
Name: "single-hop send to route",
TestFunc: testSingleHopSendToRoute,
@ -519,6 +514,14 @@ var allTestCases = []*lntest.TestCase{
Name: "watchtower session management",
TestFunc: testWatchtowerSessionManagement,
},
{
// NOTE: this test must be put in the same tranche as
// `testWatchtowerSessionManagement` to avoid parallel use of
// the default watchtower port.
Name: "revoked uncooperative close retribution altruist " +
"watchtower",
TestFunc: testRevokedCloseRetributionAltruistWatchtower,
},
{
Name: "channel fundmax",
TestFunc: testChannelFundMax,