From 5cd84e6870664982a113eeffb7047b35a9eeb1b0 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 16 Jul 2018 14:51:50 +0200 Subject: [PATCH] tests: fix test_curves bug introduced in last commit --- tests/test_curves.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_curves.py b/tests/test_curves.py index a6db9cee6e..7056cb6363 100755 --- a/tests/test_curves.py +++ b/tests/test_curves.py @@ -326,7 +326,7 @@ def to_POINT(p): def from_POINT(p): - return lambda p: (bn2int(p[0]), bn2int(p[1])) + return (bn2int(p[0]), bn2int(p[1])) JACOBIAN = BIGNUM * 3