Browse Source

tlv: simplify byte slice comparison as recommenteded by static analysis

master
Andras Banki-Horvath 4 years ago
parent
commit
72ed30e3e5
  1. 6
      tlv/truncated_test.go
  2. 2
      tlv/varint_test.go

6
tlv/truncated_test.go

@ -77,7 +77,7 @@ func TestTUint16(t *testing.T) {
t.Fatalf("unable to encode tuint16: %v", err)
}
if bytes.Compare(b.Bytes(), test.bytes) != 0 {
if !bytes.Equal(b.Bytes(), test.bytes) {
t.Fatalf("encoding mismatch, "+
"expected: %x, got: %x",
test.bytes, b.Bytes())
@ -201,7 +201,7 @@ func TestTUint32(t *testing.T) {
t.Fatalf("unable to encode tuint32: %v", err)
}
if bytes.Compare(b.Bytes(), test.bytes) != 0 {
if !bytes.Equal(b.Bytes(), test.bytes) {
t.Fatalf("encoding mismatch, "+
"expected: %x, got: %x",
test.bytes, b.Bytes())
@ -371,7 +371,7 @@ func TestTUint64(t *testing.T) {
t.Fatalf("unable to encode tuint64: %v", err)
}
if bytes.Compare(b.Bytes(), test.bytes) != 0 {
if !bytes.Equal(b.Bytes(), test.bytes) {
t.Fatalf("encoding mismatch, "+
"expected: %x, got: %x",
test.bytes, b.Bytes())

2
tlv/varint_test.go

@ -80,7 +80,7 @@ func testWriteVarInt(t *testing.T, test varIntTest) {
test.Value, err)
}
if bytes.Compare(w.Bytes(), test.Bytes) != 0 {
if !bytes.Equal(w.Bytes(), test.Bytes) {
t.Fatalf("expected bytes: %v, got %v",
test.Bytes, w.Bytes())
}

Loading…
Cancel
Save