diff options
| author | J08nY | 2024-01-31 15:20:38 +0100 |
|---|---|---|
| committer | J08nY | 2024-01-31 15:20:38 +0100 |
| commit | f1175521cc2d56355887ee25347238d2e28717b1 (patch) | |
| tree | 05ba7435e89c3260e6ee95588420575b8d71e156 /test/ec | |
| parent | f7f4115df9d443449b9c57875a38ea12b12f1758 (diff) | |
| download | pyecsca-f1175521cc2d56355887ee25347238d2e28717b1.tar.gz pyecsca-f1175521cc2d56355887ee25347238d2e28717b1.tar.zst pyecsca-f1175521cc2d56355887ee25347238d2e28717b1.zip | |
Rename formula expand.
Diffstat (limited to 'test/ec')
| -rw-r--r-- | test/ec/test_formula.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ec/test_formula.py b/test/ec/test_formula.py index e0fd6fe..a2af47e 100644 --- a/test/ec/test_formula.py +++ b/test/ec/test_formula.py @@ -6,7 +6,7 @@ import pytest from sympy import FF, symbols from importlib_resources import files, as_file import test.data.formulas -from pyecsca.ec.formula.expand import expand_formula_list +from pyecsca.ec.formula.expand import expand_formula_set from pyecsca.ec.formula.fliparoo import generate_fliparood_formulas from pyecsca.ec.formula.graph import rename_ivs from pyecsca.ec.formula.metrics import ( @@ -522,5 +522,5 @@ def test_formula_correctness(library_formula_params): def test_formula_expand(add): - res = expand_formula_list([add]) + res = expand_formula_set([add]) assert len(res) > 1 |
