diff options
| author | J08nY | 2021-01-20 02:33:45 +0100 |
|---|---|---|
| committer | J08nY | 2021-01-20 02:33:45 +0100 |
| commit | adc3cd52147f35e0a7cc9008ac96619dd89cda48 (patch) | |
| tree | 5d192ca410c844642c4e6583da64b0189dcfb5cb /test/sca/utils.py | |
| parent | 7b9d67964807df4a7dd5de9e63f8ebf21a93850f (diff) | |
| download | pyecsca-adc3cd52147f35e0a7cc9008ac96619dd89cda48.tar.gz pyecsca-adc3cd52147f35e0a7cc9008ac96619dd89cda48.tar.zst pyecsca-adc3cd52147f35e0a7cc9008ac96619dd89cda48.zip | |
Diffstat (limited to 'test/sca/utils.py')
| -rw-r--r-- | test/sca/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/sca/utils.py b/test/sca/utils.py index 7b3ae97..0a996cd 100644 --- a/test/sca/utils.py +++ b/test/sca/utils.py @@ -1,5 +1,6 @@ from os import mkdir, getenv, getcwd from os.path import join, exists, split +from typing import Dict from unittest import TestCase import matplotlib.pyplot as plt @@ -19,7 +20,7 @@ def disabled(func): return func -cases = {} +cases: Dict[str, int] = {} class Plottable(TestCase): |
