summaryrefslogtreecommitdiff
path: root/test/test_pyeclib_api.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_pyeclib_api.py')
-rw-r--r--test/test_pyeclib_api.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_pyeclib_api.py b/test/test_pyeclib_api.py
index fb9c04d..4903f73 100644
--- a/test/test_pyeclib_api.py
+++ b/test/test_pyeclib_api.py
@@ -184,11 +184,11 @@ class TestPyECLibDriver(unittest.TestCase):
continue
try:
if _type is 'shss':
- _instance = ECDriver(k=10, m=4, ec_type=_type)
+ ECDriver(k=10, m=4, ec_type=_type)
elif _type is 'libphazr':
- _instance = ECDriver(k=4, m=4, ec_type=_type)
+ ECDriver(k=4, m=4, ec_type=_type)
else:
- _instance = ECDriver(k=10, m=5, ec_type=_type)
+ ECDriver(k=10, m=5, ec_type=_type)
except ECDriverError:
self.fail("%s algorithm not supported" % _type)