mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-30 15:40:59 +02:00
htlcswitch: remove 5 second timeout for data race unit tests
This commit is contained in:
@@ -3449,16 +3449,11 @@ func TestSwitchDustForwarding(t *testing.T) {
|
|||||||
)
|
)
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
|
|
||||||
select {
|
result, ok := <-carolResultChan
|
||||||
case result, ok := <-carolResultChan:
|
require.True(t, ok)
|
||||||
require.True(t, ok)
|
assertFailureCode(
|
||||||
assertFailureCode(
|
t, result.Error, lnwire.CodeTemporaryChannelFailure,
|
||||||
t, result.Error, lnwire.CodeTemporaryChannelFailure,
|
)
|
||||||
)
|
|
||||||
|
|
||||||
case <-time.After(5 * time.Second):
|
|
||||||
t.Fatal("no result arrived for carol's dust htlc")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Send an HTLC from Alice to Carol and assert that it is failed at the
|
// Send an HTLC from Alice to Carol and assert that it is failed at the
|
||||||
// call to SendHTLC.
|
// call to SendHTLC.
|
||||||
|
Reference in New Issue
Block a user