diff options
| author | J08nY | 2020-03-04 00:04:53 +0100 |
|---|---|---|
| committer | J08nY | 2020-03-04 00:04:53 +0100 |
| commit | a97f49ebe3c8e28d2a9ba76711555a3378b62341 (patch) | |
| tree | d6064aec39573ad9e83607dbed5873d7872aed21 /test/sca/test_process.py | |
| parent | deca0e3d89ff4483dd6b6b4ad99b3400145bee5b (diff) | |
| download | pyecsca-a97f49ebe3c8e28d2a9ba76711555a3378b62341.tar.gz pyecsca-a97f49ebe3c8e28d2a9ba76711555a3378b62341.tar.zst pyecsca-a97f49ebe3c8e28d2a9ba76711555a3378b62341.zip | |
Fix some type issues.
Diffstat (limited to 'test/sca/test_process.py')
| -rw-r--r-- | test/sca/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sca/test_process.py b/test/sca/test_process.py index 5b80d1f..f039a95 100644 --- a/test/sca/test_process.py +++ b/test/sca/test_process.py @@ -7,7 +7,7 @@ from pyecsca.sca import Trace, absolute, invert, threshold, rolling_mean, offset class ProcessTests(TestCase): def setUp(self): - self._trace = Trace(None, None, np.array([30, -60, 145, 247], dtype=np.dtype("i2"))) + self._trace = Trace(np.array([30, -60, 145, 247], dtype=np.dtype("i2")), None, None) def test_absolute(self): result = absolute(self._trace) |
