Skip to content

Commit

Permalink
refactor: move mle2_test.py
Browse files Browse the repository at this point in the history
move mle2_test.py to tests directory, rename it to test_mle.py to agree with other test files' name
  • Loading branch information
ahy231 committed Sep 28, 2024
1 parent b9ffe50 commit 0536736
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/mle2_test.py → tests/test_mle2.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import unittest
from sage.all import GF
import sys

sys.path.append('../src')
sys.path.append('src')

from mle2 import MLEPolynomial, pow_2

# Assuming Fp is defined in your original file, if not, you may need to import or define it here
Expand Down

0 comments on commit 0536736

Please sign in to comment.