Merge pull request #1853 from cfromknecht/short-chan-id-compare

lnwire/lnwire_test: assert nil 0-length sid reply msg
This commit is contained in:
Olaoluwa Osuntokun 2018-09-06 18:20:31 -07:00 committed by GitHub
commit dcd8190c80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -711,7 +711,6 @@ func TestLightningWireProtocol(t *testing.T) {
}
numChanIDs := rand.Int31n(5000)
for i := int32(0); i < numChanIDs; i++ {
req.ShortChanIDs = append(req.ShortChanIDs,
NewShortChanIDFromInt(uint64(r.Int63())))
@ -743,12 +742,9 @@ func TestLightningWireProtocol(t *testing.T) {
}
numChanIDs := rand.Int31n(5000)
req.ShortChanIDs = make([]ShortChannelID, numChanIDs)
for i := int32(0); i < numChanIDs; i++ {
req.ShortChanIDs[i] = NewShortChanIDFromInt(
uint64(r.Int63()),
)
req.ShortChanIDs = append(req.ShortChanIDs,
NewShortChanIDFromInt(uint64(r.Int63())))
}
v[0] = reflect.ValueOf(req)