Remove unused assignment in a decaf test.

This commit is contained in:
Isis Lovecruft 2017-05-18 03:43:15 +00:00
parent 891cf76aab
commit 767c99adf5
Failed to extract signature

View file

@ -672,7 +672,7 @@ mod test {
// Check that P is on the curve
assert!(P.0.is_valid());
// Check that P is in the image of the decaf map
let compressed_P = P.compress();
P.compress();
}
}
}