Skip to content

Commit

Permalink
Try to fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
fchirica authored May 17, 2020
1 parent 036600d commit c0646f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_verifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
import secrets
import time

for _ in range(10):
def test_prove_and_verify():
discriminant_challenge = secrets.token_bytes(10)
discriminant_size = 512
discriminant = create_discriminant(discriminant_challenge, discriminant_size)
int_size = (discriminant_size + 16) >> 4

iters = 2000000
iters = 1000000
t1 = time.time()
result = prove(discriminant_challenge, discriminant_size, iters)
t2 = time.time()
Expand Down

0 comments on commit c0646f9

Please sign in to comment.