mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-07 19:30:46 +02:00
multi: move many t.Fatalf calls to require.NoError
This commit is contained in:
@@ -8,6 +8,7 @@ import (
|
||||
"testing/quick"
|
||||
|
||||
"github.com/lightningnetwork/lnd/tlv"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
// TestExtraOpaqueDataEncodeDecode tests that we're able to encode/decode
|
||||
@@ -128,9 +129,7 @@ func TestExtraOpaqueDataPackUnpackRecords(t *testing.T) {
|
||||
&recordProducer{tlv.MakePrimitiveRecord(type2, &hop2)},
|
||||
}
|
||||
typeMap, err := extraBytes.ExtractRecords(newRecords...)
|
||||
if err != nil {
|
||||
t.Fatalf("unable to extract record: %v", err)
|
||||
}
|
||||
require.NoError(t, err, "unable to extract record")
|
||||
|
||||
// We should find that the new backing values have been populated with
|
||||
// the proper value.
|
||||
|
Reference in New Issue
Block a user