htlcswitch: remove 5 second timeout for data race unit tests

This commit is contained in:
eugene
2021-10-05 15:36:24 -04:00
parent 6450f0c080
commit ee2162b5d2

View File

@@ -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.