Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
programmingAthlete committed Nov 26, 2023
1 parent bcb2ab6 commit ef1c44b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_number_theory.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def test_check_quadratic_residue(self):

def test_generate_random_quadratic_residue(self):
x = NumberTheory.generate_quadratic_residue(1000000000)
self.assertIsNone(x)
self.assertIsNotNone(x)
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from crypto_VDF.utils import exp_modular, square_sequences
from crypto_VDF.utils.utils import exp_modular, square_sequences


class TestUtils(unittest.TestCase):
Expand Down

0 comments on commit ef1c44b

Please sign in to comment.