mirror of
https://github.com/golang/go
synced 2024-11-17 20:04:47 -07:00
crypto/cipher: fix duplicated arguments to bytes.Equal in test
Args were duplicated by a mistake. Found using static analysis tools. Change-Id: I2f61e09844bc409b1f687d654767332d93dd39a2 Reviewed-on: https://go-review.googlesource.com/c/go/+/164937 Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
This commit is contained in:
parent
359fb4a9af
commit
8782fd0431
@ -81,7 +81,7 @@ func TestCFBVectors(t *testing.T) {
|
|||||||
plaintextCopy := make([]byte, len(ciphertext))
|
plaintextCopy := make([]byte, len(ciphertext))
|
||||||
cfbdec.XORKeyStream(plaintextCopy, ciphertext)
|
cfbdec.XORKeyStream(plaintextCopy, ciphertext)
|
||||||
|
|
||||||
if !bytes.Equal(plaintextCopy, plaintextCopy) {
|
if !bytes.Equal(plaintextCopy, plaintext) {
|
||||||
t.Errorf("#%d: wrong plaintext: got %x, expected %x", i, plaintextCopy, plaintext)
|
t.Errorf("#%d: wrong plaintext: got %x, expected %x", i, plaintextCopy, plaintext)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user