Update internal/radix51/fe_test.go

Co-Authored-By: hdevalence <hdevalence@hdevalence.ca>
This commit is contained in:
Filippo Valsorda 2019-05-08 14:44:08 -07:00 committed by Henry de Valence
parent 4c8c35e919
commit 4ea68891fd
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ func TestSelectSwap(t *testing.T) {
CondSwap(&c, &d, 0)
if (c.Equal(&a) != 1) || (d.Equal(&b) != 1) {
if c.Equal(&a) != 1 || d.Equal(&b) != 1 {
t.Errorf("Swap failed")
}