mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-06 19:18:12 +02:00
lnwallet: run commitment tx tests in parallel
This commit is contained in:
parent
8a2999c789
commit
b5d281dca8
@ -169,8 +169,9 @@ func TestCommitmentAndHTLCTransactions(t *testing.T) {
|
||||
jsonFile: "test_vectors_legacy.json",
|
||||
},
|
||||
{
|
||||
name: "anchors",
|
||||
chanType: channeldb.SingleFunderTweaklessBit | channeldb.AnchorOutputsBit,
|
||||
name: "anchors",
|
||||
chanType: channeldb.SingleFunderTweaklessBit |
|
||||
channeldb.AnchorOutputsBit,
|
||||
jsonFile: "test_vectors_anchors.json",
|
||||
},
|
||||
}
|
||||
@ -186,15 +187,18 @@ func TestCommitmentAndHTLCTransactions(t *testing.T) {
|
||||
err = json.Unmarshal(jsonText, &testCases)
|
||||
require.NoError(t, err)
|
||||
|
||||
t.Run(set.name, func(t *testing.T) {
|
||||
for _, test := range testCases {
|
||||
test := test
|
||||
for _, test := range testCases {
|
||||
test := test
|
||||
name := fmt.Sprintf("%s-%s", set.name, test.Name)
|
||||
|
||||
t.Run(name, func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
t.Run(test.Name, func(t *testing.T) {
|
||||
testVectors(t, set.chanType, test)
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user