Fix test for inversion

This commit is contained in:
Sean Bowe 2018-10-15 22:06:17 -06:00
parent da3b663082
commit edf8ce1eaf
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
1 changed files with 2 additions and 2 deletions

View File

@ -900,8 +900,8 @@ fn test_pow_q_minus_2_is_pow() {
assert_eq!(r1, r2);
assert_eq!(r2, r3);
// Double the numbers so we check something different next time around
r1.add_assign(&r2);
// Add R so we check something different next time around
r1.add_assign(&R);
r2 = r1;
r3 = r1;
}