1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 14:28:07 +00:00

test_curves: fix test case name typo

This commit is contained in:
Roman Zeyde 2015-07-24 10:44:56 +03:00
parent 5ec72d3a5b
commit e569b019c4

View File

@ -97,7 +97,7 @@ def test_inverse(curve, r):
assert y == y_
def test_inverse(curve, r):
def test_mult_half(curve, r):
x = r.randrange(0, 2*curve.p)
y = int2bn(x)
lib.bn_mult_half(y, int2bn(curve.p))