From ef13f08dc772e8e0da3b3d021086a622e0270ea0 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Wed, 14 Mar 2018 12:14:52 +0100 Subject: [PATCH] Fix a test not marked as #[test] --- src/groups/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/groups/mod.rs b/src/groups/mod.rs index 8983779..dc8da3b 100644 --- a/src/groups/mod.rs +++ b/src/groups/mod.rs @@ -949,6 +949,7 @@ fn affine_ok() { assert!(res.is_err(), "Affine initialization should be ok because the point is on the curve"); } +#[test] fn test_y_at_point_at_infinity() { assert!(G1::zero().y == Fq::one()); assert!((-G1::zero()).y == Fq::one());