diff options
| author | J08nY | 2020-03-09 12:44:03 +0100 |
|---|---|---|
| committer | J08nY | 2020-03-09 12:44:03 +0100 |
| commit | a7d3589c4ba3551ab614dfc9c931c5998fbf7fac (patch) | |
| tree | 7f09b68b16b461ee6fd47d366dfc3d8444cf513e /test/test_impl.py | |
| parent | 0fde32d49ca8bcba19a370125be99ad0c7572009 (diff) | |
| download | pyecsca-codegen-a7d3589c4ba3551ab614dfc9c931c5998fbf7fac.tar.gz pyecsca-codegen-a7d3589c4ba3551ab614dfc9c931c5998fbf7fac.tar.zst pyecsca-codegen-a7d3589c4ba3551ab614dfc9c931c5998fbf7fac.zip | |
Add inversion to config, change scalar mult command.
Diffstat (limited to 'test/test_impl.py')
| -rw-r--r-- | test/test_impl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_impl.py b/test/test_impl.py index 7e37722..ee56c41 100644 --- a/test/test_impl.py +++ b/test/test_impl.py @@ -144,7 +144,7 @@ class ScalarMultiplicationTests(ImplTests): def callback(target, mult, params): for value in values: - result = target.scalar_mult(value) + result = target.scalar_mult(value, params.generator) expected = mult.multiply(value) self.assertEqual(result, expected) |
