aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/ec/utils.py
diff options
context:
space:
mode:
authorJ08nY2023-08-08 14:04:51 +0200
committerJ08nY2023-08-08 14:04:51 +0200
commit109fec027766630166083c497ea0f0e8052965a4 (patch)
treeb2c5bac0a11c30627f542d98d7c49ace358081d6 /test/ec/utils.py
parent5e3b6529f8c868b01a1407a6adc2c6b1a74771fb (diff)
downloadpyecsca-109fec027766630166083c497ea0f0e8052965a4.tar.gz
pyecsca-109fec027766630166083c497ea0f0e8052965a4.tar.zst
pyecsca-109fec027766630166083c497ea0f0e8052965a4.zip
Initial move to pytest.
Diffstat (limited to 'test/ec/utils.py')
-rw-r--r--test/ec/utils.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/ec/utils.py b/test/ec/utils.py
index 67a9cc0..0d0a875 100644
--- a/test/ec/utils.py
+++ b/test/ec/utils.py
@@ -1,12 +1,6 @@
from itertools import product
from functools import reduce
-
-def slow(func):
- func.slow = 1
- return func
-
-
def cartesian(*items):
for cart in product(*items):
yield reduce(lambda x, y: x + y, cart)