From 0db5c8e7e39a36ae26c6e671a2397127293442bc Mon Sep 17 00:00:00 2001 From: Conrado Gouvea Date: Thu, 6 Jul 2023 18:20:20 -0300 Subject: [PATCH] fix order() function used in tests that showed an incorrect order (#89) --- tests/util/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/util/mod.rs b/tests/util/mod.rs index d5c58c7..94f28a6 100644 --- a/tests/util/mod.rs +++ b/tests/util/mod.rs @@ -184,7 +184,7 @@ pub fn order(point: EdwardsPoint) -> &'static str { } else if point.is_torsion_free() { "p" } else { - "8p" + ">p" } }