itest: add a prefix before appending a subtest case

This commit is contained in:
yyforyongyu
2024-12-04 06:29:22 +08:00
parent 686a7dd31c
commit c536bc220f
11 changed files with 165 additions and 129 deletions

View File

@@ -23,15 +23,15 @@ import (
// basicFundingTestCases defines the test cases for the basic funding test.
var basicFundingTestCases = []*lntest.TestCase{
{
Name: "basic funding flow static key remote",
Name: "basic flow static key remote",
TestFunc: testBasicChannelFundingStaticRemote,
},
{
Name: "basic funding flow anchor",
Name: "basic flow anchor",
TestFunc: testBasicChannelFundingAnchor,
},
{
Name: "basic funding flow simple taproot",
Name: "basic flow simple taproot",
TestFunc: testBasicChannelFundingSimpleTaproot,
},
}