summaryrefslogtreecommitdiff
path: root/bip-0340/test-vectors.py
diff options
context:
space:
mode:
Diffstat (limited to 'bip-0340/test-vectors.py')
-rw-r--r--bip-0340/test-vectors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bip-0340/test-vectors.py b/bip-0340/test-vectors.py
index e5b8847..d1bf6b2 100644
--- a/bip-0340/test-vectors.py
+++ b/bip-0340/test-vectors.py
@@ -6,7 +6,7 @@ def is_square(x):
def has_square_y(P):
"""Determine if P has a square Y coordinate. Used in an earlier draft of BIP340."""
- assert not is_infinity(P)
+ assert not is_infinite(P)
return is_square(P[1])
def vector0():