]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/pkt_test.go
Merge branch 'develop'
[nncp.git] / src / pkt_test.go
index 4f5919080cf0c296950c61b62291f4e2d57636a9..d90877dafac36ec4ad38d227e2b9ff13d2515947 100644 (file)
@@ -1,6 +1,6 @@
 /*
 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
-Copyright (C) 2016-2021 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2016-2023 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -146,7 +146,7 @@ func TestPktEncRead(t *testing.T) {
                }
                var pktBuf bytes.Buffer
                xdr.Marshal(&pktBuf, &pkt)
-               return bytes.Compare(pt.Bytes(), append(pktBuf.Bytes(), data...)) == 0
+               return bytes.Equal(pt.Bytes(), append(pktBuf.Bytes(), data...))
        }
        if err := quick.Check(f, nil); err != nil {
                t.Error(err)