1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-03 12:00:59 +00:00

Merge pull request #39 from romanz/master

test_curves: fix test case name typo
This commit is contained in:
Pavol Rusnak 2015-07-26 16:47:42 +02:00
commit 8108524358

View File

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