les: remove invalid use of t.Fatal in TestHandshake (#21012)

This commit is contained in:
Boqin Qin 2020-05-01 19:48:52 +08:00 committed by GitHub
parent 7e4d1925f0
commit c43be6cf87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,7 @@ package les
import ( import (
"crypto/rand" "crypto/rand"
"errors"
"math/big" "math/big"
"reflect" "reflect"
"sort" "sort"
@ -121,10 +122,10 @@ func TestHandshake(t *testing.T) {
var reqType uint64 var reqType uint64
err := recv.get("announceType", &reqType) err := recv.get("announceType", &reqType)
if err != nil { if err != nil {
t.Fatal(err) return err
} }
if reqType != announceTypeSigned { if reqType != announceTypeSigned {
t.Fatal("Expected announceTypeSigned") return errors.New("Expected announceTypeSigned")
} }
return nil return nil
}) })